[프로그래머스 level1] x만큼 간격이 있는 n개의 숫자

김예지·2021년 10월 9일
1

문제

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


문제 풀이

코드

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

한줄로 끝내는 코드

function solution(x, n) {
    return Array(n).fill(x).map((v, i) => (i + 1) * v);
}
profile
내가 짱이다 😎 매일 조금씩 성장하기🌱

1개의 댓글

comment-user-thumbnail
2021년 10월 25일

10/25
map 사용해서 풀어보기

답글 달기