most simple way solution in Clear category for Binary Count by abdelhak
def checkio(number: int) -> int: return bin(number).count('1')
April 18, 2020