First solution in Clear category for Binary Count by _flomingo_
def checkio(number): return bin(number).count("1")
May 10, 2016