First solution in Clear category for Binary Count by sebastian009
def checkio(number): return bin(number).count("1")
Oct. 23, 2016