Binary Count solution in Clear category for Binary Count by Damian_Horna
def checkio(number): return str(bin(number)).count("1")
Oct. 22, 2016