Home 수 정렬하기 1 백준 2750번 정렬
Post
Cancel

수 정렬하기 1 백준 2750번 정렬

https://www.acmicpc.net/problem/2750

1
2
3
4
5
6
7
8
num = int(input())
num_list = []
for i in range(num):
    num_list.append(int(input()))
    
num_list = sorted(num_list, reverse=False)
for i in range(num):
    print(num_list[i])

이번에도 간단한 정렬문제입니다.

This post is licensed under CC BY 4.0 by the author.

Comments powered by Disqus.