[프로그래머스] Lv.1 자릿수 더하기

Miro·2022년 7월 30일
0
post-thumbnail

프로그래머스 Lv.1 자릿수 더하기

문제, 제한 사항

입출력

나의 코드

1
2
3
4
5
6
7
8
9
10
function solution(n) {
    let n_split = String(n).split('');
    let result = 0;
    
    for(let i = 0; i < n_split.length; i++) {
        result += Number(n_split[i]);
    }
 
    return result;
}
cs

정수로 받아온 n을 문자열로 바꾼후 split을 사용해 잘라서 n_split에 할당해준다.

반복문을 i가 0부터 n_split의 길이까지 반복한다.

n_split[i]를 다시 정수로 바꿔서 result에 더해준다.

profile
프론트엔드 개발자(진)

0개의 댓글