프로그래머스 Lv.1 x만큼 간격이 있는 n개의 숫자
1 2 3 4 5 6 7 8 9 10 11 12 | function solution(x, n) { let answer = []; let sum = 0; for(let i = 0; i < n; i++) { answer.push(sum + x); sum += x; } return answer; } | cs |
반복문에서
i
를 0부터n
까지 반복한다.빈 배열
answer
에sum + x
를push
하고,sum
에x
를 더해준다.