Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | |||
5 | 6 | 7 | 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | 16 | 17 | 18 |
19 | 20 | 21 | 22 | 23 | 24 | 25 |
26 | 27 | 28 | 29 | 30 | 31 |
Tags
- dp
- English
- 바텀업
- topdown
- XML주석
- 오픽노잼
- 메모이제이션
- XML
- 오픽공부법
- stack 스택
- 오픽점수잘받는방법
- 피보나치수열
- 안드로이드주석
- 이진탐색
- fibo
- 오픽
- 오픽노잼공부방법
- 디피
- 영어회화
- 오픽가격
- 안드로이드
- opic
- 다이나믹프로그래밍
- 주석
- 영어말하기
- dynamicProgramming
- ㅂ
- 탑다운
- 이진탐색 #나무 자르기
Archives
RUBY
[프로그래머스] 다음 큰 숫자 본문
출처:: programmers.co.kr/learn/courses/30/lessons/12911
분류:: 구현
1. 문제 이해 및 해결과정
2. 풀이방법
1. [python] count함수 이용
def two_digit(num):
result=""
while num>0:
remainder=num%2
num=num//2
result=str(remainder)+result
return result
def solution(n):
answer = 0
digit=two_digit(n)
onecnt=digit.count('1')
i=n+1
while True:
tmp=two_digit(i)
tmpcnt=tmp.count('1')
if onecnt==tmpcnt:
return i
i+=1
return answer
2. bin함수 이용
def solution(n):
onecnt=bin(n).count('1')
while True:
n+=1
if onecnt==bin(n).count('1'):
return n
3. 오답원인
4. 알게된 점
'PS > Programmers' 카테고리의 다른 글
[프로그래머스] 땅따먹기 (0) | 2020.10.27 |
---|---|
[프로그래머스] 최솟값 만들기 (0) | 2020.10.27 |
[프로그래머스] 올바른 괄호 (0) | 2020.10.26 |
[프로그래머스] 조이스틱 ★ (0) | 2020.10.24 |
[프로그래머스] 카펫 (0) | 2020.10.24 |
Comments