728x90
반응형
class Solution {
public int solution(String my_string) {
int answer = 0;
String replace = "";
replace = my_string.toLowerCase().replaceAll("[a-z]", "");
String[] arry = replace.split("");
for(int i = 0; i< arry.length; i++) {
answer += Integer.parseInt(arry[i]);
}
return answer;
}
}
728x90
반응형
'알고리즘 문제풀이 > Programmers - 자바' 카테고리의 다른 글
프로그래머스 - 모음 제거 (0) | 2023.03.03 |
---|---|
프로그래머스 - 문자열안에 문자열 (0) | 2023.03.03 |
프로그래머스 - 자릿수 더하기 (0) | 2023.02.23 |
프로그래머스 - 중앙값 구하기 (0) | 2023.02.23 |
프로그래머스 - 편지 (0) | 2023.02.23 |