Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- 한빛미디어서평단
- 텐서플로
- 파이썬
- MATLAB
- 독후감
- tensorflow
- MySQL
- Visualization
- Ga
- 리눅스
- Linux
- Google Analytics
- 딥러닝
- 한빛미디어
- 서평단
- 파이썬 시각화
- Pandas
- 서평
- 티스토리
- Python
- 시각화
- 월간결산
- 매틀랩
- SQL
- Blog
- python visualization
- 블로그
- Tistory
- 통계학
- matplotlib
Archives
- Today
- Total
목록역정렬 (1)
pbj0812의 코딩 일기
[PYTHON] 숫자 역정렬
import sysimport math # Auto-generated code below aims at helping you parse# the standard input according to the problem statement. n = int(input())q=""for i in input().split(): digit = int(i) q+=str(digit)# Write an action using print# To debug: print("Debug messages...", file=sys.stderr)print(0 if int(q)==0 else "".join(sorted(q)[::-1]))
ComputerLanguage_Program/PYTHON
2018. 9. 1. 02:16