또 뭐하지
백준 10814번 나이순 정렬 본문
728x90
N = int(input())
L = []
for _ in range(N):
x, y = input().split()
L.append([int(x),y])
L.sort(key = lambda x:x[0])
for i in range(N):
print(L[i][0], L[i][1])
sort 함수에 기준을 적용할 수 있단 걸 새롭게 알았다!
'Study > Coding Test' 카테고리의 다른 글
백준 1018번 체스판 다시 칠하기 (0) | 2024.11.21 |
---|---|
백준 11650번 좌표 정렬하기 (0) | 2024.11.21 |
백준 7568번 덩치 (0) | 2024.11.20 |
백준 2751번 수 정렬하기 2 (0) | 2024.11.20 |
백준 1676번 팩토리얼 0의 개수 (3) | 2024.11.19 |