First solution in Clear category for Binary Count by Jaime
def checkio(data): return str(bin(data)).count('1')
April 17, 2019
Comments: