First solution in Clear category for Binary Count by erewhon
def checkio(number: int) -> int: return str(bin(number)).count("1")
March 19, 2020
Comments: