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 aieozn
def na2(liczba):
wynik=''
while liczba!=0:
wynik=wynik+ str(liczba%2)
liczba=liczba//2
return wynik
def checkio(n, m):
n=na2(n)
m=na2(m)
a=max(len(m),len(n))
b=min(len(m),len(n))
for i in range(a-b):
if len(n)
Nov. 27, 2016