[6/28] 11651 (좌표 정렬하기 2)

이경준·2021년 6월 29일
0

코테

목록 보기
56/140
post-custom-banner

실버5 문제

내 코드

n = int(input())
arr = []

for i in range(n):
    a, b = map(int, input().split())
    arr.append([a, b])
    
arr.sort(key = lambda x:(x[1], x[0]))

for j in arr:
    print(*j)

로직

  1. 리스트 정렬 (두번째 인덱스 --> 첫번째 인덱스 순서)
  2. 출력
profile
The Show Must Go On

0개의 댓글