일기 대신 코드 슬쩍

8. 정렬(위에서 아래로) 본문

Python/알고리즘(Python)

8. 정렬(위에서 아래로)

코코자 2023. 3. 6. 12:41
# 위에서 아래로
N = int(input())
numList = []
for _ in range(N):
    numList.append(int(input()))
numList.sort(reverse= True)

for i in numList:
    print(i,end=' ')