컴공생의 다이어리

[파이썬, Python] 백준 11650번 : 좌표 정렬하기 본문

Development/Algorithm & Coding Test

[파이썬, Python] 백준 11650번 : 좌표 정렬하기

컴공 K 2021. 8. 19. 00:01

백준 11650번 : 좌표 정렬하기

(문제 바로가기)

 

내 코드

import sys
n = int(input())
x_y = []
for _ in range(n):
	x_y.append(list(map(int,sys.stdin.readline().strip().split())))
x_y.sort(key = lambda x : (x[0],x[1]))

for x, y in x_y:
    print(x, y)
728x90
Comments