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