728x90
https://school.programmers.co.kr/learn/courses/30/lessons/120851
프로그래머스
코드 중심의 개발자 채용. 스택 기반의 포지션 매칭. 프로그래머스의 개발자 맞춤형 프로필을 등록하고, 나와 기술 궁합이 잘 맞는 기업들을 매칭 받으세요.
programmers.co.kr
def solution(my_string):
import re
a = re.sub(r'[a-z-A-Z]', '', my_string)
answer = 0
for i in a:
answer += int(i)
return answer
import re
def solution(my_string) :
answer = re.findall(r'\d', my_string)
answer = [int(i) for i in answer]
return sum(answer)
728x90
'𝘼𝙣𝙖𝙡𝙮𝙨𝙞𝙨 > ᴀʟɢᴏʀɪᴛʜᴍ' 카테고리의 다른 글
[Programmers] 제곱수 판별하기 (0) | 2023.03.31 |
---|---|
[Programmers] 자릿수 더하기 (0) | 2023.03.31 |
[Programmers] 배열의 유사도 : intersection (0) | 2023.03.31 |
[Programmers] 특정 문자 제거하기 (0) | 2023.03.31 |
[Programmers] 문자열 뒤집기 (0) | 2023.03.29 |