First solution in Clear category for Binary Count by zephy_r
def checkio(number: int) -> int: return bin(number).count('1')
July 23, 2019
Comments: