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 | 31 |
Tags
- 프로그래머스
- Git
- hackerrank
- ChatGPT
- 프로그래머스 파이썬
- 맥북
- 더현대서울 맛집
- 자연어처리
- Real or Not? NLP with Disaster Tweets
- leetcode
- 캐치카페
- 금융문자분석경진대회
- PYTHON
- Docker
- github
- ubuntu
- programmers
- dacon
- AI 경진대회
- 백준
- Kaggle
- 파이썬
- 편스토랑 우승상품
- Baekjoon
- 코로나19
- 우분투
- SW Expert Academy
- 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