숨어있는 숫자의 덧셈 (1) - Python
2023. 9. 29. 17:04ㆍ공부/📝 프로그래머스
def solution(my_string):
answer = 0
for item in my_string:
if item.isdigit():
answer += int(item)
return answer
# Test Cases
print(solution("aAb1B2cC34oOp"))
print(solution("1a2b3c4d123"))
이번엔 .isdigit()를 사용했습니다.
def solution(my_string):
return sum(int(i) for i in my_string if i.isdigit())
그런데 sum()을 쓰면 더 깔끔하게 된다는 것을 잊었네요,
'공부 > 📝 프로그래머스' 카테고리의 다른 글
컨트롤 제트 - Python (0) | 2023.09.29 |
---|---|
소인수분해 - Python (0) | 2023.09.29 |
문자열 정렬하기 (1) - Python (0) | 2023.09.29 |
모음 제거 - Python (0) | 2023.09.29 |
합성수 찾기 - Python (0) | 2023.09.24 |