First solution in Clear category for The Hamming Distance by jani
def checkio(n, m): return bin(n^m).count('1')
July 12, 2015
Comments: