[백준] #2750 수 정렬하기 python
2022. 12. 27. 13:41
https://www.acmicpc.net/problem/2750
📕 설명 📕
1. 정렬할 source를 list에 넣는다.
2. sorted로 정렬 후 하나씩 출력한다.
🧑🏻💻 나의 풀이 🧑🏻💻
src = []
for _ in range(int(input())):
src.append(int(input()))
for i in sorted(src):
print(i)
'Programming > Algorithm' 카테고리의 다른 글
[백준] #25305 커트라인 python (0) | 2022.12.27 |
---|---|
[백준] #2587 대푯값 2 python (0) | 2022.12.27 |
[백준] #2563 색종이 접기 python (0) | 2022.12.27 |
[백준] #2566 최댓값 python (0) | 2022.12.26 |
[백준] #2738 행렬 덧셈 python (1) | 2022.12.26 |