First solution in Clear category for Binary Count by BumKlatsch
def checkio(number: int) -> int: return bin(number).count('1')
Oct. 29, 2020