2751 - 수 정렬하기 2

LeeKyoungChang·2022년 2월 9일
0

Algorithm

목록 보기
36/203
post-thumbnail

📚 2751 - 수 정렬하기 2

수 정렬하기 2

 

소스

import sys

n = int(sys.stdin.readline())

arr = []

for _ in range(n):
    arr.append(int(sys.stdin.readline()))


for data in sorted(arr):
    print(data)


# https://leunco.tistory.com/m/71

 

결과
스크린샷 2022-02-09 오후 10 21 05

 

profile
"야, (오류 만났어?) 너두 (해결) 할 수 있어"

0개의 댓글