Skip to content

Commit a379461

Browse files
committed
116차 2번 문제풀이(푸는중)
1 parent 4f0f64f commit a379461

1 file changed

Lines changed: 10 additions & 0 deletions

File tree

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
import sys
2+
3+
input = sys.stdin.readline
4+
5+
n, t = map(int, input().split())
6+
hold = []
7+
for _ in range(n):
8+
hold.append(list(map(int, input().split())))
9+
10+
hold.sort() # [[0, 2], [1, 2], [3, 2], [4, 1], [6, 3]]

0 commit comments

Comments
 (0)