지나가던 개발자

[Python] 백준 16212번(정열적인 정렬) 문제 풀이 본문

PS/Python

[Python] 백준 16212번(정열적인 정렬) 문제 풀이

KwonYongHyeon 2022. 11. 20. 14:25

 

input()
[print(x, end=" ") for x in sorted(list(map(int, input().split())))]

 

숏코딩 81위...!

 

Comments