https://school.programmers.co.kr/learn/courses/30/lessons/12917
1. 내가 작성한 코드
def solution(s):
s = sorted(s, reverse=True)
answer = ''
for i in s:
answer+=i
return answer
나는 for문을 이용했는데, join 함수를 쓰면 더욱 간단하게 해결할 수 있다.
def solution(s):
return ''.join(sorted(s, reverse=True))
'🔅코딩테스트 공부🔅 > ❗프로그래머스(Lv.1)' 카테고리의 다른 글
[프로그래머스] Level1 문자열 내 마음대로 정렬하기(with python) (0) | 2023.01.31 |
---|---|
[프로그래머스] Level1 문자열 내 p와 y의 개수(with python) (0) | 2023.01.30 |
[프로그래머스] Level1 같은 숫자는 싫어(with python) (0) | 2023.01.29 |
[프로그래머스] Level1 두 정수 사이의 합(with python) (0) | 2023.01.29 |
[프로그래머스] Level1 나누어 떨어지는 숫자 배열(with python) (0) | 2023.01.29 |
댓글