반응형
알고리즘 분류
- 정렬
SOLUTION
import sys
N = int(sys.stdin.readline())
coordinates = []
for _ in range(N):
x, y = map(int, sys.stdin.readline().split())
coordinates.append([x,y])
coordinates.sort() # x, y 좌표에 대해 오름차순으로 정렬
for x, y in coordinates:
print(x,y)
'코딩테스트 대비 > BOJ' 카테고리의 다른 글
[Baekjoon/Python] 1920번: 수 찾기 - 효과는 굉장했다! (0) | 2021.10.26 |
---|---|
[Baekjoon/Python] 11651번: 좌표 정렬하기2 - 효과는 굉장했다! (0) | 2021.10.26 |
[Baekjoon/Python] 10989번: 수 정렬하기3 - 효과는 굉장했다! (0) | 2021.10.26 |
[Baekjoon/Python] 7568번: 덩치 - 효과는 굉장했다! (0) | 2021.10.26 |
[Baekjoon/Python] 2751번: 수 정렬하기2 - 효과는 굉장했다! (0) | 2021.10.24 |