Short solution solution in Clear category for The Hamming Distance by ludek.reif
checkio = lambda n, m: bin(n ^ m).count('1')
Feb. 3, 2016