https://school.programmers.co.kr/learn/courses/30/lessons/12917
def solution(s): return "".join(sorted(s, reverse=True))
그냥 sorted(s, reverse=True)하면 리스트로 출력돼서 join 사용함.
는 없고 똑같이 씀.