def solution(n):
answer = list()
for i in list(str(n)):
answer.append(i)
a = sorted(answer)[::-1]
stra = "".join(a)
return int(stra)
'Coding Test > Programmers_Python' 카테고리의 다른 글
[프로그래머스/python] 체육복 (0) | 2020.07.21 |
---|---|
[프로그래머스/python] 2016년 (0) | 2020.07.21 |
[프로그래머스/python] 자릿수 더하기 (0) | 2020.07.14 |
[프로그래머스/python] 직사각형 별찍기 (0) | 2020.07.14 |
[프로그래머스/python] 직사각형 별찍기 (0) | 2020.07.14 |