Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
Simple one-liner solution in Clear category for Binary Count by Goodester
def checkio(number: int) -> int:
return bin(number).count('1')
June 15, 2019
Comments: