First solution in Creative category for Binary Count by NEED
checkio = lambda n: bin(n).count('1')
May 29, 2015