count solution in Clear category for Binary Count by TomTerebus
def checkio(number): return bin(number).count('1')
March 19, 2015