728x90 반응형 숨어있는 숫자의 덧셈 (1)1 프로그래머스 - 숨어있는 숫자의 덧셈 (1) 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; } } 2023. 2. 23. 이전 1 다음 728x90 반응형