First solution in Clear category for The Hamming Distance by artakase
def checkio(n, m): return bin(n ^ m).count('1')
Nov. 19, 2015