Notice
Recent Posts
Recent Comments
Link
bdfgdfg
[레벨1] x만큼 간격이 있는 n개의 숫자 본문
반응형
#include <string>
#include <vector>
using namespace std;
vector<long long> solution(int x, int n) {
vector<long long> answer;
int i;
for(i = 0; i < n; ++i)
answer.push_back(x + x * i);
return answer;
}
반응형
'코딩테스트 > 프로그래머스' 카테고리의 다른 글
[레벨1] 평균 구하기 (0) | 2021.08.19 |
---|---|
[레벨1] 핸드폰 번호 가리기 (0) | 2021.08.18 |
[레벨1] 직사각형 별찍기 (0) | 2021.08.16 |
[레벨1] 문자열 다루기 기본 (0) | 2021.08.14 |
[레벨1] 행렬의 덧셈 (0) | 2021.08.13 |
Comments