문자열 내림차순으로 배치하기
def solution(s): return ''.join(sorted(s, reverse = True))
이전 포스트 문자열 내 마음대로 정렬하기
다음 포스트 문자열 다루기 기본