숨어있는 숫자의 덧셈 (2) - Python
2023. 9. 30. 00:43ㆍ공부/📝 프로그래머스
def solution(my_string):
answer = 0
temp = 0
for item in my_string:
if item.isdigit():
temp = temp * 10 + int(item)
else:
answer += temp
temp = 0
return answer + temp
# Test Cases
print(solution("aAb1B2cC34oOp"))
print(solution("1a2b3c4d123Z"))
이렇게 풀었습니다.
def solution(my_string):
s = ''.join(i if i.isdigit() else ' ' for i in my_string)
return sum(int(i) for i in s.split())
정말 잘 풀었네요.
'공부 > 📝 프로그래머스' 카테고리의 다른 글
한 번만 등장한 문자 - Python (0) | 2023.09.30 |
---|---|
가까운 수 - Pyhon (0) | 2023.09.30 |
문자열 정렬하기 (2) - Python (0) | 2023.09.29 |
369게임 - Python (0) | 2023.09.29 |
인덱스 바꾸기 - Python (0) | 2023.09.29 |