티스토리 뷰
title: "x만큼 간격이 있는 n개의 숫자"
category: 프로그래머스[Level-1]
tags: [C++, JavaScript, 프로그래머스]
date: "2021-01-21"
문제 링크
C++
#include <string>
#include <vector>
using namespace std;
vector<long long> solution(int x, int n) {
vector<long long> answer;
for(int i=1; i<=n; i++){
answer.push_back(x*i);
}
return answer;
}
JavaScript
function solution(x, n) {
var answer = [];
for (let i = 1; i <= n; i++) {
answer.push(x * i);
}
return answer;
}
728x90
반응형
'Programmers Solutions > Level-1' 카테고리의 다른 글
[프로그래머스] 행렬의 덧셈 (0) | 2021.02.03 |
---|---|
[프로그래머스] 직사각형 별찍기 (0) | 2021.02.03 |
[프로그래머스] 예산 (0) | 2021.02.03 |
[프로그래머스] 비밀지도 (0) | 2021.02.03 |
[프로그래머스] 다트 게임 (0) | 2021.02.03 |
댓글