반응형
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
'알고리즘 문제 풀이 > Programmers' 카테고리의 다른 글
예산 - 1단계 (C++) (0) | 2019.06.26 |
---|---|
자릿수 더하기 - 1단계 (C++) (0) | 2019.06.26 |
제일 작은 수 제거하기 - 1단계 (C++) (0) | 2019.06.26 |
핸드폰 번호 가리기 - 1단계 (C++) (0) | 2019.06.26 |
행렬의 덧셈 - 1단계 (C++) (0) | 2019.06.26 |