문자열 정렬하기 (1) - Python
2023. 9. 29. 16:56ㆍ공부/📝 프로그래머스
def solution(my_string):
answer = []
[answer.append(int(i)) for i in my_string if i in "0123456789"]
answer.sort()
return answer
# Test Cases
print(solution("hi12392"))
print(solution("p2o4i8gj2"))
print(solution("abcde0"))
def solution(my_string):
return sorted([int(c) for c in my_string if c.isdigit()])
.isdigit()를 사용한 풀이를 발견했습니다. 배워야겠습니다.
'공부 > 📝 프로그래머스' 카테고리의 다른 글
소인수분해 - Python (0) | 2023.09.29 |
---|---|
숨어있는 숫자의 덧셈 (1) - Python (0) | 2023.09.29 |
모음 제거 - Python (0) | 2023.09.29 |
합성수 찾기 - Python (0) | 2023.09.24 |
2차원으로 만들기 - Python (0) | 2023.09.22 |