#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;
}
'코딩테스트 > 프로그래머스' 카테고리의 다른 글
[Level 1][C++] 핸드폰 번호 가리기 (0) | 2024.09.30 |
---|---|
[Level 1][C++] 직사각형 별찍기 (0) | 2024.09.27 |
[Level 1][C++] 행렬의 덧셈 (0) | 2024.09.27 |
[Level 1][C++] 가운데 글자 가져오기 (0) | 2024.09.27 |
[Level 1][C++] 시저 암호 (0) | 2024.09.27 |