728x90
반응형
class Solution {
public int solution(String my_string) {
int answer = 0;
String[] ars = my_string.split("");
for(int i=0; i<ars.length; i++){
try {
Integer.parseInt(ars[i]);
} catch (Exception e) {
ars[i] = "A";
}
}
String str = "";
for(String a : ars){
str+=a;
}
String[] ars1 = str.split("A");
for(String a : ars1){
try {
answer += Integer.parseInt(a);
} catch (Exception e) {
continue;
}
}
return answer;
}
}
728x90
반응형
'알고리즘 문제풀이 > Programmers - 자바' 카테고리의 다른 글
프로그래머스 - 공 던지기 (0) | 2023.03.17 |
---|---|
프로그래머스 - 7의 개수 (0) | 2023.03.17 |
프로그래머스 - 한 번만 등장한 문자 (0) | 2023.03.17 |
프로그래머스 - 진료 순서 정하기 (0) | 2023.03.16 |
프로그래머스 - k의 개수 (0) | 2023.03.14 |