문자열 정수의 합 Lv. 0

박영준·2023년 5월 22일
0

코딩테스트

목록 보기
129/300
class Solution {
    public int solution(String num_str) {
        int answer = 0;
        return answer;
    }
}


해결법

방법 1

class Solution {
    public int solution(String num_str) {
        int answer = 0;
        
        String[] num_str_list = num_str.split("");
        
        for (int i = 0; i < num_str_list.length; i++) {
            answer += Integer.parseInt(num_str_list[i]);
        }
        
        return answer;
    }
}
  • 배열로 각각 분리시킨 뒤, int 타입으로 변환하면서 answer에 더해주기

문자열 정수의 합

profile
개발자로 거듭나기!

0개의 댓글