문자열 정렬하기 (2) - Python
2023. 9. 29. 21:20ㆍ공부/📝 프로그래머스
def solution(my_string):
return ''.join(sorted(list(my_string.lower())))
# Test Cases
print(solution("Bcad"))
print(solution("heLLo"))
print(solution("Python"))
이렇게 풀었는데...
def solution(my_string):
return ''.join(sorted(my_string.lower()))
그런데 list()가 없어도 되었네요.
'공부 > 📝 프로그래머스' 카테고리의 다른 글
가까운 수 - Pyhon (0) | 2023.09.30 |
---|---|
숨어있는 숫자의 덧셈 (2) - Python (0) | 2023.09.30 |
369게임 - Python (0) | 2023.09.29 |
인덱스 바꾸기 - Python (0) | 2023.09.29 |
암호 해독 - Python (0) | 2023.09.29 |