Question: 
Write a function to convert the given decimal number to its binary equivalent.


Model's Code:
def decimal_to_binary(n):
    return bin(n).replace("0b", "")



Sample Correct Code:
def decimal_to_binary(n): 
    return bin(n).replace("0b","") 


Asserts:
assert decimal_to_binary(8) == '1000'
assert decimal_to_binary(18) == '10010'
assert decimal_to_binary(7) == '111' 


Tests:
Test 1 of 3: PASS
Test 2 of 3: PASS
Test 3 of 3: PASS

Test 99 of 974: 77/99 (77.77777777777779%): success