본문 바로가기

알고리즘 문제 풀이/Programmers

x만큼 간격이 있는 n개의 숫자 - 1단계 (C++)

반응형
SMALL
#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;
}

 

반응형
LIST