data = input()
num = [int(s) for s in data]
num.sort(reverse=True)
print(''.join([str(n) for n in num]))
'> 알고리즘 문제 풀이 > BOJ' 카테고리의 다른 글
11650-좌표 정렬하기 (python) (0) | 2020.10.11 |
---|---|
10814-나이순 정렬 (python) (0) | 2020.10.11 |
2750-수 정렬하기 (python) (0) | 2020.10.10 |
1920-수 찾기 (python) (0) | 2020.10.06 |
19/09- 주로 런타임에러가 발생하는 경우 (0) | 2020.10.06 |
댓글