[프로그래머스][Python] 문자열 내림차순으로 배치하기 def solution(s): return "".join(sorted(s,reverse=True)) Share on Twitter Facebook LinkedIn Previous Next