1일 1코테 day 27 _ 자연수 뒤집어 배열로 만들기

konut ko·2022년 9월 9일
0
post-custom-banner

(day11 에서 분리)

문제

나의 풀이

function solution(n) {
let a = n.toString()
b= a.split("").map((i)=> i*1 ).reverse()
         return b;
}

넘의 풀이 1

나머지 주워담기

넘의 풀이 2


parseInt

넘의 풀이 3

profile
보초딩코라 틀린 내용 있을 수도 있습니다. 댓글 지적 환영
post-custom-banner

0개의 댓글