<내 코드>
n = int(input())
dots = []
for i in range(n):
dots.append(list(map(int, input().split())))
dots = sorted(dots, key=lambda x: (x[1], x[0]))
for i in dots:
print(*i)
반응형
'알고리즘 문제풀기 > 백준 - Python' 카테고리의 다른 글
[백준 1874] 스택 수열 - Python (0) | 2020.07.24 |
---|---|
[백준 10828] 스택 - Python (0) | 2020.07.24 |
[백준 10814] 나이순 정렬 - Python (0) | 2020.07.22 |
[백준 1181] 단어 정렬 - Python (0) | 2020.07.22 |
[백준 11650] 좌표 정렬하기 - Python (0) | 2020.07.21 |