728x90
반응형
문제
코드
#include <bits/stdc++.h>
using namespace std;
vector<int> solution(int n, int k) {
vector<int> answer;
for(int i = 1; i<=(n/k); ++i)
{
answer.emplace_back(k*i);
}
return answer;
}
728x90
반응형
'코딩테스트 > 프로그래머스(C++)_Level.0' 카테고리의 다른 글
[프로그래머스/C++] Lv.0 카운트 다운 (0) | 2023.11.07 |
---|---|
[프로그래머스/C++] Lv.0 글자 지우기 (0) | 2023.11.07 |
[프로그래머스/C++] Lv.0 문자 개수 세기 (0) | 2023.11.06 |
[프로그래머스/C++] Lv.0 qr code (0) | 2023.11.05 |
[프로그래머스/C++] Lv.0 세로 읽기 (0) | 2023.11.05 |