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
- optional chanining
- nextjs
- es11
- CSS
- 카카오맵 api
- Python #Baekjoon
- React Kakao map
- Redux
- JavaScript
- Python #CodeUp
- Python
- react
- 프로그래머스
- firebase
- css #html
- Nullish Coalescing Operator
- 카카오맵
- Template literals
- Hooks
- Next
- es6
- BOJ
- HTML #CSS
- React #Hooks
- spread operation
- HTML
- Default parameter
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