Binary count solution in Clear category for Binary Count by michal_bien
def checkio(number): return str(bin(number)).count('1')
Oct. 7, 2016