Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
First solution in Clear category for The Hamming Distance by werepire
def checkio(n, m):
def dec2bin(n):
bin=""
while n>0:
bin=str(n%2)+bin
n=n//2
return bin
def zerofill (s, n):
while (len(s)
Nov. 1, 2016