We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4ce768d commit 7b1d9a0Copy full SHA for 7b1d9a0
Level_1/정수 내림차순으로 배치하기/main.py
@@ -0,0 +1,4 @@
1
+def solution(n):
2
+ n_list = list(str(n))
3
+ n_list.sort(reverse=True)
4
+ return int(''.join(n_list))
0 commit comments