Notice
Recent Posts
Recent Comments
Link
DevKim
[Python] 백준 #11650 좌표 정렬하기 본문
728x90
n=int(input())
List=[]
for i in range(n):
List.append(list(map(int,input().split())))
List=sorted(List,key=lambda x:(x[0],x[1]))
for i in range(n):
print(*List[i])
728x90
'알고리즘 PS' 카테고리의 다른 글
[Python] 백준 #10989 수 정렬하기3 (0) | 2021.01.14 |
---|---|
[Python] 백준 #10814 나이순 정렬 (0) | 2021.01.14 |
[Python] #2751 수 정렬하기2 (0) | 2021.01.14 |
[Python] 백준 #10989 수 정렬하기 3 (0) | 2021.01.03 |
[Python] 백준 #1449 수리공 항승 (0) | 2020.12.19 |
Comments