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
- Next
- react
- 카카오맵 api
- Python
- Hooks
- CSS
- 프로그래머스
- React Kakao map
- spread operation
- es11
- Nullish Coalescing Operator
- Python #CodeUp
- JavaScript
- Template literals
- HTML
- Redux
- firebase
- React #Hooks
- HTML #CSS
- css #html
- nextjs
- Python #Baekjoon
- BOJ
- optional chanining
- Default parameter
- 카카오맵
- es6
Archives
- Today
- Total
거북이개발자
[백준 2750] 수 정렬하기 본문
0. 제목
- 백준 2750 수 정렬하기
1. 문제
2. 풀이
- sort()함수를 통해 쉽게 풀 수 있다.
3. 코드
arr=[]
n=int(input())
for _ in range(n):
a=int(input())
arr.append(a)
arr.sort()
for i in arr:
print(i)
'Algorithm(Python)' 카테고리의 다른 글
[백준 5937] 키로거 (0) | 2021.01.15 |
---|
Comments