First solution in Clear category for Binary Count by grazik
checkio = lambda x: list(str(bin(x))[2:]).count('1')
Oct. 29, 2016