▶ 문제문자열 s에 나타나는 문자를 큰 것부터 작은 순으로 정렬해 새로운 문자열을 리턴하는 함수 solution 완성하기s는 영문 대소문자로만 구성되어 있으며, 대문자는 소문자보다 작은 것으로 간주함. ▶ 제한사항str은 길이 1 이상인 문자열 ▶ 풀이def solution(s): return ''.join(sorted(s, reverse = True))통과!아 처음으로 만족스러운 코드 나온듯 ㅜ 미리 sorted 함수 실험햇던거s = 'KingGodDino'print(sorted(s))# ['D', 'G', 'K', 'd', 'g', 'i', 'i', 'n', 'n', 'o', 'o']print(sorted(s, reverse = True))# ['o', 'o', 'n', 'n', 'i', 'i..