알고리즘

프로그래머스 - 자릿수 더하기

pooney 2022. 12. 18. 21:50

 

문제 

 

 

 

 

 

내가 해결한 답 

 

1.  직관적으로 볼 수 있게 작성 한 Stream을 이용한 해결 방법 

public class Solution {
    public int solution(int n) {
       return Arrays.stream(String.valueOf(n).split("")).mapToInt(Integer::parseInt).sum();
    }
}