Posts [알고리즘] 백준 11650 - 좌표 정렬하기
Post
Cancel

[알고리즘] 백준 11650 - 좌표 정렬하기


문제

11650 - 좌표 정렬하기


접근

파이썬의 람다는 사랑입니다.


코드

  • 파이썬 코드
1
2
3
4
5
6
7
8
9
10
11
12
13
import sys

input = sys.stdin.readline

n = int(input())

arr = [list(map(int, input().split(' '))) for _ in range(n)]

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

for x, y in arr:
    print(x, y)


This post is licensed under CC BY 4.0 by the author.