Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
First --with bin split and count solution in Clear category for Binary Count by wyf.141060
checkio = lambda number: bin(number).split('b')[-1].count('1')
Dec. 11, 2018