[백준] 11651 좌표 정렬하기 2 Python

BellBoy·2023년 5월 19일
0

https://www.acmicpc.net/problem/2164

import sys
from collections import deque

input = sys.stdin.readline

N = int(input())

my_array = []

for i in range(N):
    X, Y = map(int, input().split())
    my_array.append([X, Y])

list2 = sorted(my_array, key=lambda x: (x[1], x[0]))


for i in list2:
    print(' '.join(str(j) for j in i))

lambda 함수를 사용해서 2번째 인자를 먼저 정렬한뒤 첫번째 인자를 정렬하는 방식으로 만들었습니다

profile
리액트러버

0개의 댓글