https://school.programmers.co.kr/learn/courses/30/lessons/12933
def solution(n):
n_list = [x for x in list(str(n))]
n_list.sort(reverse=True)
return int("".join(n_list))
728x90
반응형
'🔻PS > Programmers' 카테고리의 다른 글
[Programmers] 프로그래머스 외계인 사전 Python (0) | 2024.05.19 |
---|---|
[Programmers] 프로그래머스 명예의 전당(1) Python (0) | 2024.05.19 |
[Programmers] 프로그래머스 튜플 Python (0) | 2024.05.16 |
[Programmers] 프로그래머스 다트 게임 Python (0) | 2024.05.16 |
[Programmers] 프로그래머스 비밀지도 Python (0) | 2024.05.14 |