def solution(n):
binary_n = str(format(n, 'b'))
count_n = binary_n.count('1')
result=n+1
while True:
count_result = str(format(result, 'b')).count('1')
if count_result == count_n:
break
result+=1
return result
'코딩 테스트 > 문제 풀기' 카테고리의 다른 글
[프로그래머스] 게임 맵 최단거리 (0) | 2021.03.15 |
---|---|
[프로그래머스] 땅따먹기 (0) | 2021.03.11 |
[백준 18352번] 특정 거리의 도시 찾기 (0) | 2021.03.10 |
[백준 9095] 1,2,3 더하기 (0) | 2021.02.28 |
[백준 2839] 설탕 배달 (0) | 2021.02.22 |
댓글