[BOJ][Python][브1][2750] 수 정렬하기

문제 링크

문제링크

첫 번째 풀이

정답코드

1
2
3
4
5
6
7
8
9
10
11
12
13
import sys
from math import pi, sqrt
from collections import deque

# sys.stdin = open("input.txt", 'r')

n = int(input())
arr = []
for _ in range(n):
    arr.append(int(input()))

arr.sort()
print(*arr, sep='\n')

Success Notice: 수고하셨습니다. :+1:

Leave a comment