https://programmers.co.kr/learn/courses/30/lessons/12911
bin을 활용해서 풀면 된다.
나의 풀이
def solution(n):
one_count = bin(n).count('1')
n+=1
while n:
if one_count == bin(n).count('1'):
return n
else:
n+=1
'Programming > Programmers' 카테고리의 다른 글
[프로그래머스] 최댓값과 최솟값 (Python) (0) | 2021.11.07 |
---|---|
[프로그래머스] 숫자의 표현 (Python) (0) | 2021.11.07 |
[프로그래머스] n진수 게임 (Python) (0) | 2021.11.07 |
[프로그래머스] 파일명 정렬 (Python) (0) | 2021.11.07 |
[프로그래머스] 압축 (Python) (0) | 2021.11.06 |
댓글