https://school.programmers.co.kr/learn/courses/30/lessons/12917
문자열도 리스트의 형태가 아니더라도 바로 sort 또는 sorted 함수를 사용할 수 있다.
다만, 리스트의 형태로 반환되므로 join함수로 다시 문자열의 형태로 만들어주자!
def solution(s):
temp = sorted(s, reverse=True)
result = ''.join(temp)
return result
다른 사람의 풀이를 봐도 똑같은 논리다.
def solution(s):
return ''.join(sorted(s, reverse=True))
'Algorithm > Programmers lv.1' 카테고리의 다른 글
[프로그래머스] 문자열 다루기 기본(문자열을 리스트로 바꾸기, isdigit) (0) | 2024.08.28 |
---|---|
[프로그래머스] 부족한 금액 계산하기 (0) | 2024.08.28 |
[프로그래머스] 내적(feat.zip함수) (0) | 2024.08.27 |
[프로그래머스] 수박수박수박수박수박수? (join함수) (0) | 2024.08.25 |
[프로그래머스] 가운데 글자 가져오기 (문자열 다루기) (0) | 2024.08.25 |