내 풀이
def solution(s):
answer = ''
s_list = sorted(s, reverse=True)
answer = "".join(s_list)
return answer
다른방법 1
def solution(s):
return ''.join(sorted(s, reverse=True))
다른방법 2
def solution(s):
s = list(s)
s.sort(reverse = True)
answer = ""
for i in s:
answer = answer + i
return answer
'Engineering WIKI > Programmers' 카테고리의 다른 글
[프로그래머스] 시저 암호 (0) | 2022.04.19 |
---|---|
[프로그래머스] 문자열을 정수로 바꾸기 (0) | 2022.04.19 |
[프로그래머스] 소수 찾기 (0) | 2022.04.19 |
[프로그래머스] 문자열 다루기 기본 (0) | 2022.04.15 |
[프로그래머스] 문자열 내 p와 y의 개수 (0) | 2022.04.15 |
[프로그래머스] 문자열 내 마음대로 정렬하기 (0) | 2022.04.14 |
[프로그래머스] 두 정수 사이의 합 (0) | 2022.04.14 |
[프로그래머스] 나누어 떨어지는 숫자 배열 (0) | 2022.04.12 |