Skip to content

Commit

Permalink
[BOJ] 2750번 수 정렬하기 (#4)
Browse files Browse the repository at this point in the history
  • Loading branch information
heerucan committed Feb 22, 2022
1 parent 6f95852 commit 6994f7a
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions BOJ/정렬/2750.py
Original file line number Diff line number Diff line change
@@ -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])
Empty file.

0 comments on commit 6994f7a

Please sign in to comment.