ppotatoG


Back to all posts

x만큼 간격이 있는 n개의 숫자

Written by ppotatoG & Posted on November 17th, 2021

Programmers x만큼 간격이 있는 n개의 숫자

처음 제출한 답

빈 배열 answer을 만들어 x로 시작해 n번 반복하는 중복문

answerx * i를 넣어준다

function solution(x, n){
const answer = [];
for(let i = 1; i <= n; i++){
answer.push(x * i);
}
console.log(answer)
}

최근 보충한 답

new Array()n과 같은 배열을 선언

fillnew Arrayx를 넣어주고

map으로 index + 1인 값을 곱해준다

function solution(x, n) {
return new Array(n).fill(x).map((val, idx) => val *= idx + 1);
}

Posted on November 17th, 2021