First solution in Creative category for Binary Count by waxdesf
# migrated from python 2.7 def checkio(n): return bin(n).count(repr(1))
May 21, 2015