Skip to content

Commit

Permalink
Merge pull request #69 from AlgoLeadMe/origin/16-2secondag
Browse files Browse the repository at this point in the history
16-2secondag
  • Loading branch information
2secondag committed Mar 4, 2024
2 parents 9e20445 + 97954a9 commit 3bbfe10
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 5 deletions.
5 changes: 0 additions & 5 deletions 2secondag/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,12 +12,7 @@
| 8์ฐจ์‹œ | 2024.01.22 | ๊ตฌํ˜„ | [๋‹จ์–ด ๊ณต๋ถ€] (https://www.acmicpc.net/problem/1157) | [#31](https://github.com/AlgoLeadMe/AlgoLeadMe-5/pull/31#event-11604202172)|
| 9์ฐจ์‹œ | 2024.01.25 | ์ˆ˜ํ•™ | [๋‹ฌํŒฝ์ด๋Š” ์˜ฌ๋ผ๊ฐ€๊ณ  ์‹ถ๋‹ค] (https://www.acmicpc.net/problem/2869) | [#37](https://github.com/AlgoLeadMe/AlgoLeadMe-5/pull/37#event-11619409875)|
| 10์ฐจ์‹œ | 2024.01.28 | ๊ตฌํ˜„ | [์Œ๊ณ„] (https://www.acmicpc.net/problem/2920) | [#39](https://github.com/AlgoLeadMe/AlgoLeadMe-5/pull/39#event-11655882785)|
<<<<<<< Updated upstream
=======
<<<<<<< Updated upstream
| 11์ฐจ์‹œ | 2024.01.31 | ๋ถ€๋ฃจํŠธํฌ์Šค ์•Œ๊ณ ๋ฆฌ์ฆ˜ | [๋ธ”๋ž™์žญ] (https://www.acmicpc.net/problem/2798) | [#46]()|
| 12์ฐจ์‹œ | 2024.02.15 | ์Šคํƒ | [์Šคํƒ] (https://www.acmicpc.net/problem/10828) | [#58](https://github.com/AlgoLeadMe/AlgoLeadMe-5/pull/58)|
| 13์ฐจ์‹œ | 2024.02.18 | ๋ธŒ๋ฃจํŠธํฌ์Šค | [์ฒด์ŠคํŒ ๋‹ค์‹œ ์น ํ•˜๊ธฐ] (https://www.acmicpc.net/problem/1018) | [#62](https://github.com/AlgoLeadMe/AlgoLeadMe-5/pull/62)|
| 14์ฐจ์‹œ | 2024.02.21 | ์ž๋ฃŒ๊ตฌ์กฐ | [์ˆ˜ ์ฐพ๊ธฐ] (https://www.acmicpc.net/problem/1920) | [#63](https://github.com/AlgoLeadMe/AlgoLeadMe-5/pull/63#issuecomment-1962366605)|
>>>>>>> Stashed changes
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
import sys
N = int(sys.stdin.readline())
list = []

for i in range(N):
x,y = map(int ,sys.stdin.readline().split())
list.append([x,y])

list.sort()

for i in list:
print(i[0],i[1])

0 comments on commit 3bbfe10

Please sign in to comment.