문제 설명
함수 solution은 정수 x와 자연수 n을 입력 받아, x부터 시작해 x씩 증가하는 숫자를 n개 지니는 리스트를 리턴해야 합니다. 다음 제한 조건을 보고, 조건을 만족하는 함수, solution을 완성해주세요.
제한 사항
- x는 -10000000 이상, 10000000 이하인 정수입니다.
- n은 1000 이하인 자연수입니다.
입출력 예
x | n | answer |
2 | 5 | [2,4,6,8,10] |
4 | 3 | [4,8,12] |
-4 | 2 | [-4, -8] |
Python
def solution(x, n):
if x != 0:
answer = list(range(x, x*n+x, x))
else: answer = [0] * n
return answer
JavaScript
function solution(x, n) {
var answer = [];
let i = x;
for(let j = 0; j < n; j++){
answer.push(i);
i += x;
}
return answer;
}
C++
#include <string>
#include <vector>
using namespace std;
vector<long long> solution(int x, int n) {
vector<long long> answer;
for(int i = 0; i < n; i++)
answer.push_back(x * (i + 1));
return answer;
}
'개발노트&IT > 코딩테스트' 카테고리의 다른 글
[프로그래머스|Level.1] 예산 (0) | 2021.01.30 |
---|---|
[프로그래머스|Level.1] 직사각형 별찍기 (0) | 2021.01.30 |
[프로그래머스|Level.1] 행렬의 덧셈 (0) | 2021.01.30 |
[프로그래머스|Level.1] 핸드폰 번호 가리기 (0) | 2021.01.30 |
[프로그래머스|Level.1] 하샤드 수 (0) | 2021.01.30 |
최근댓글