- python의 기본 정렬 라이브러리(sorted 등)는 key 설정을 하지 않으면
튜플의 인덱스 순서대로 오름차순 정렬한다
n = int(input())
positions = []
for _ in range(n):
data = input().split()
positions.append((int(data[0]), int(data[1])))
positions_sorted = sorted(positions)
for p in positions_sorted:
print(p[0], p[1])
'> 알고리즘 문제 풀이 > BOJ' 카테고리의 다른 글
2747-피보나치 수 (python) (0) | 2020.10.11 |
---|---|
10989-수 정렬하기 3 (python) (0) | 2020.10.11 |
10814-나이순 정렬 (python) (0) | 2020.10.11 |
1427-소트인사이드 (python) (0) | 2020.10.10 |
2750-수 정렬하기 (python) (0) | 2020.10.10 |
댓글