First solution in Clear category for Binary Count by arek.kowalski107
def checkio(number): return sum(map(int, list(bin(number)[2:])))
Dec. 14, 2016