First solution in Speedy category for The Hamming Distance by query42
def checkio(n, m): return bin(n^m).count('1')
Oct. 24, 2016