[Algorithm] programmers level 1 : 자릿수 더하기

sunny·2021년 3월 7일
0
post-thumbnail

문제

https://programmers.co.kr/learn/courses/30/lessons/12931


풀이

자릿수의 합을 담을 변수 answer를 선언 후 toString으로 문자열로 바꿔준 뒤, split을 통해 배열로 만들고 map을 사용해 parseInt로 다시 숫자로 바꾼 num을 answer에 차례로 더해준다.
방법2는 toString->split과정을 Array.from을 통해 처리했으며 map대신 reduce함수를 사용하였다.


결과

profile
blog 👉🏻 https://kimnamsun.github.io/

0개의 댓글