First solution in Clear category for Binary Count by R0bo7
checkio = lambda n: bin(n).count('1')
Jan. 19, 2022