[백준] #11650 좌표 정렬하기 python
2022. 12. 27. 20:38
https://www.acmicpc.net/problem/11650
📕 설명 📕
list에 값들을 넣고 sort하면 알아서 Python에서 y좌표까지 sort 가능하다.
🧑🏻💻 나의 풀이 🧑🏻💻
N = int(input())
src = []
for i in range(N):
src.append(list(map(int, input().split())))
for x, y in sorted(src):
print(x, y)
'Programming > Algorithm' 카테고리의 다른 글
[백준] #1181 단어 정렬 python (0) | 2022.12.27 |
---|---|
[백준] #11651 좌표 정렬하기 2 python (0) | 2022.12.27 |
[백준] #1427 소트인사이드 python (0) | 2022.12.27 |
[백준] #2108 통계학 python (1) | 2022.12.27 |
[백준] #10989 수 정렬하기 3 python (0) | 2022.12.27 |