First solution in Clear category for Binary Count by han97
def checkio(number): return bin(number).count('1')
Aug. 3, 2016