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
- gs25
- Baekjoon
- 자연어처리
- 코로나19
- 프로그래머스
- 프로그래머스 파이썬
- 맥북
- Real or Not? NLP with Disaster Tweets
- dacon
- Kaggle
- 백준
- 파이썬
- AI 경진대회
- hackerrank
- Git
- github
- 캐치카페
- Docker
- leetcode
- 금융문자분석경진대회
- 편스토랑 우승상품
- 우분투
- PYTHON
- programmers
- 편스토랑
- 데이콘
- ubuntu
- ChatGPT
- 더현대서울 맛집
- SW Expert Academy
Archives
- Today
- Total
솜씨좋은장씨
[Programmers] 124 나라의 숫자 (Python) 본문
728x90
반응형
1일 1문제 84일차!
오늘의 문제는 프로그래머스의 124 나라의 숫자입니다!
Solution
def solution(n):
answer = ""
while n > 0:
n, i = divmod(n, 3)
if i == 0:
n = n - 1
answer = '412'[i] + answer
return answer
'Programming > 코딩 1일 1문제' 카테고리의 다른 글
[Programmers] 최댓값과 최솟값 (Python) (0) | 2020.05.02 |
---|---|
[BaekJoon] 2089번 : -2진수 (Python) (0) | 2020.05.01 |
[HackerRank] Day of Programmer (Python) (0) | 2020.04.29 |
[HackerRank] Grading Students (Python) (0) | 2020.04.28 |
[BaekJoon] 10866번 : 덱 (Python) (0) | 2020.04.27 |
Comments