반응형
1.문제
2.풀이
q,r = divmod(N, Q) 단점은 조금 느리다는 것.
3.구현
def solution(n):
answer = ''
if n<=3:
return '124'[n-1]
else:
q,r = divmod(n-1, 3)
return solution(q)+'124'[r]
return answer
반응형
'PS > 프로그래머스' 카테고리의 다른 글
프로그래머스 짝지어 제거하기 python (0) | 2021.06.14 |
---|---|
프로그래머스 오픈채팅방 python (0) | 2021.06.14 |
프로그래머스 튜플 python (0) | 2021.06.13 |
프로그래머스 문자열압축 python (0) | 2021.06.12 |
프로그래머스 타겟넘버 python, BFS로 풀기 (0) | 2021.06.10 |
댓글