https://school.programmers.co.kr/learn/courses/30/lessons/68935
def solution(n):
answer=0
s=[]
while n != 0:
s.append(n % 3)
n //= 3
for i in range(1,len(s)+1):
answer += s[-i] * 3 ** (i-1)
return answer
'Coding Test > 프로그래머스' 카테고리의 다른 글
[Level 1] / [Python] 시저 암호 (0) | 2022.10.14 |
---|---|
[Level 1] / [Python] 예산 (0) | 2022.10.14 |
[Level 1] / [Python] 이상한 문자 만들기 (0) | 2022.10.14 |
[Level 1] / [Python] 같은 숫자는 싫어 (0) | 2022.10.14 |
[Level 1] / [Python] 최대공약수와 최소공배수 (0) | 2022.10.14 |