From 6994f7aafee41ad73d80c8f5b95ef6b2dfc8d0d2 Mon Sep 17 00:00:00 2001 From: heerucan Date: Tue, 22 Feb 2022 13:40:58 +0900 Subject: [PATCH] =?UTF-8?q?[BOJ]=202750=EB=B2=88=20=EC=88=98=20=EC=A0=95?= =?UTF-8?q?=EB=A0=AC=ED=95=98=EA=B8=B0=20(#4)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- "BOJ/\354\240\225\353\240\254/2750.py" | 9 +++++++++ ...4\353\226\241\353\247\214\353\223\244\352\270\260.py" | 0 2 files changed, 9 insertions(+) create mode 100644 "BOJ/\354\240\225\353\240\254/2750.py" create mode 100644 "CodingTest/CH7 \354\235\264\354\247\204\355\203\220\354\203\211/\353\226\241\353\263\266\354\235\264\353\226\241\353\247\214\353\223\244\352\270\260.py" diff --git "a/BOJ/\354\240\225\353\240\254/2750.py" "b/BOJ/\354\240\225\353\240\254/2750.py" new file mode 100644 index 0000000..12a91d4 --- /dev/null +++ "b/BOJ/\354\240\225\353\240\254/2750.py" @@ -0,0 +1,9 @@ +n = int(input()) +a = [] +for i in range(n): + a.append(int(input())) + +sortedA = sorted(a) + +for i in range(len(sortedA)): + print(sortedA[i]) diff --git "a/CodingTest/CH7 \354\235\264\354\247\204\355\203\220\354\203\211/\353\226\241\353\263\266\354\235\264\353\226\241\353\247\214\353\223\244\352\270\260.py" "b/CodingTest/CH7 \354\235\264\354\247\204\355\203\220\354\203\211/\353\226\241\353\263\266\354\235\264\353\226\241\353\247\214\353\223\244\352\270\260.py" new file mode 100644 index 0000000..e69de29