1 liner solution in Clear category for Binary Count by swagg010164
def checkio(number): return str(bin(number)).count('1')
Dec. 8, 2019
Comments: