Notice
Recent Posts
Recent Comments
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- leetcode
- 파이썬
- 더현대서울 맛집
- ubuntu
- github
- 코로나19
- 캐치카페
- 편스토랑 우승상품
- Real or Not? NLP with Disaster Tweets
- 프로그래머스
- SW Expert Academy
- hackerrank
- 금융문자분석경진대회
- ChatGPT
- dacon
- programmers
- 백준
- 프로그래머스 파이썬
- Kaggle
- 편스토랑
- PYTHON
- Docker
- Baekjoon
- 우분투
- 자연어처리
- 데이콘
- Git
- AI 경진대회
- 맥북
- gs25
Archives
- Today
- Total
솜씨좋은장씨
[Programmers] 3진법 뒤집기 (Python) 본문
728x90
반응형
코딩테스트 1일 1문제!
오늘의 문제는 프로그래머스의 3진법 뒤집기 입니다.
Solution
def solution(n):
answer = 0
ternary = ""
while n > 0:
n, mod = divmod(n, 3)
ternary = ternary + str(mod)
answer = int(ternary, 3)
return answer
'Programming > 코딩 1일 1문제' 카테고리의 다른 글
[Programmers] 행렬의 덧셈 (Python) (0) | 2021.03.08 |
---|---|
[Programmers] 2018 KAKAO BLIND RECRUITMENT [3차] 파일명 정렬 (Python) (0) | 2021.03.07 |
[Programmers] 이진변환 반복하기 (Python) (0) | 2021.02.27 |
[Programmers] 콜라츠 추측 (Python) (0) | 2021.02.22 |
[Programmers] 같은 숫자는 싫어 (Python) (0) | 2021.02.21 |
Comments