Written by
최태열
on
on
[Python][프로그래머스][Level1] 문자열 내림차순으로 배치하기
[Python][프로그래머스][Level1] 문자열 내림차순으로 배치하기
코드
def solution(s):
return "".join(sorted(s,reverse=True))
반대로 정렬하고
"”를 기준으로 join 시키면 된다.
def solution(s):
return "".join(sorted(s,reverse=True))
반대로 정렬하고
"”를 기준으로 join 시키면 된다.
Discussion and feedback