First solution in Clear category for Binary Count by panaro32
def checkio(n): return bin(n).count('1')
May 12, 2014