https://school.programmers.co.kr/learn/courses/30/lessons/12911
def solution(n):
one_count = bin(n).count('1')
while True:
n += 1
if bin(n).count('1') == one_count:
return n
728x90
반응형
'🔻PS > Programmers' 카테고리의 다른 글
[Programmers] 프로그래머스 숫자 변환하기 Python (0) | 2024.10.01 |
---|---|
[Programmers] 프로그래머스 연속 부분 수열 합의 개수 Python (0) | 2024.09.26 |
[Programmers] 프로그래머스 등굣길 Python (3) | 2024.09.14 |
[Programmers] 프로그래머스 롤케이크 자르기 Python (0) | 2024.09.04 |
[Programmers] 프로그래머스 문자열 나누기 Python (0) | 2024.09.04 |