Posts [알고리즘] 프로그래머스 - x만큼 간격이 있는 n개의 숫자
Post
Cancel

[알고리즘] 프로그래머스 - x만큼 간격이 있는 n개의 숫자


문제

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


접근


코드

  • 파이썬 코드
1
2
3
4
5
6
7
def solution(x, n):
    answer = []
    num = x
    for _ in range(n):
        answer.append(num)
        num += x
    return answer
  • C++ 코드
1
2
3
4
5
6
7
8
9
10
11
12
13
#include <vector>

using namespace std;

vector<long long> solution(int x, int n) {
    vector<long long> answer;
    long long num = x;
    for(int i = 0; i<n;i++){
        answer.push_back(num);
        num += x;
    }
    return answer;
}


This post is licensed under CC BY 4.0 by the author.

[알고리즘] 프로그래머스 - 행렬의 덧셈

[알고리즘] 프로그래머스 - 정수 제곱근 판별