본문 바로가기

알고리즘/Python

(Python) 백준알고리즘 2750번 : 수 정렬하기

 

소스

for i range(num) 은  i에 0부터 num 만큼 반복.

array.append(int(input()) 은  array에 int형 입력값 추가.