지나가던 개발자

[Python] 백준 11650번(좌표 정렬하기) 문제 풀이 본문

PS/Python

[Python] 백준 11650번(좌표 정렬하기) 문제 풀이

KwonYongHyeon 2022. 2. 24. 14:17

 

a = []
for i in range(int(input())):
    a.append(list(map(int, input().split())))
for b in sorted(a):
    print(b[0], b[1])

 

 파이썬 만세! 라고 외치고 싶은 문제다. sorted() 최고...!

Comments