[Python][프로그래머스][Level2] 점프와 순간 이동

[Python][프로그래머스][Level2] 점프와 순간 이동

코드

def solution(n):
    answer=0
    while n!=0:
        n,last=divmod(n,2)
        answer+=last
    return answer

Discussion and feedback