ppotatoG


Back to all posts

자연수 뒤집어 배열로 만들기

Written by ppotatoG & Posted on November 13th, 2021

Programmers 자연수 뒤집어 배열로 만들기

제출한 답

n을 문자열로 바꿔준 후 잘라 값을 숫자로 바꿔주고 reverse로 뒤집기

reduce로 값을 숫자로 바꿔준 후 더하기

function solution(num) {
return String(num).split('').map((num) => Number(num)).reverse();
}

Posted on November 13th, 2021