문제 성공
def solution(s): arr = [ord(i) for i in s] arr.sort(reverse=True) answer = [chr(j) for j in arr] return "".join(answer)
def solution(s): return "".join(sorted(s, reverse = True))