-
[💕 프로그래머스 Python] 다음 큰 숫자Algorithm/1일 1코테 2020. 10. 28. 21:21반응형
⛄
프로그래머스 연습문제 2단계
다음 큰 숫자
<문제>
programmers.co.kr/learn/courses/30/lessons/12911
<내가 쓴 답>
def solution(s): n = 1000000 b = bin(s).count('1') for i in range(s+1, n): if b == bin(i).count('1'): return i
<다른사람 코드>
def nextBigNumber(n): c = bin(n).count('1') for m in range(n+1,1000001): if bin(m).count('1') == c: return m
반응형'Algorithm > 1일 1코테' 카테고리의 다른 글
[💕 프로그래머스 Python] 영어 끝말잇기 (0) 2020.11.01 [💕 프로그래머스 Python] 올바른 괄호 (0) 2020.10.30 [💕 프로그래머스 Python] 더 맵게 (0) 2020.10.28 [😭 프로그래머스 Python] 셔틀버스 (0) 2020.10.28 [🤷♀️ 프로그래머스 Python] 뉴스 클러스터링 (0) 2020.10.27