티스토리 뷰
programmers.co.kr/learn/courses/30/lessons/12911
def check(n):
return list(bin(n)).count('1')
def solution(n):
answer = n
res = check(answer)
while(1):
answer += 1
if check(answer) == res:
break
return answer
'Algorithm > Programmers' 카테고리의 다른 글
[프로그래머스] 이진 변환 반복하기 - Python (0) | 2021.04.20 |
---|---|
[프로그래머스] 거스름돈 - Python (0) | 2021.04.15 |
[프로그래머스] 땅따먹기 - Python (0) | 2021.04.01 |
[프로그래머스] 키패드 누르기 - Python (0) | 2021.03.30 |
[프로그래머스] 더 맵게 - Python (0) | 2021.03.30 |