728x90
반응형
문제
코드
#include <string>
#include <vector>
using namespace std;
vector<int> solution(int start_num, int end_num) {
vector<int> answer;
for(int i = start_num; i< end_num+1; ++i)
{
answer.emplace_back(i);
}
return answer;
}
728x90
반응형
'코딩테스트 > 프로그래머스(C++)_Level.0' 카테고리의 다른 글
[프로그래머스/C++] Lv.0 글자 이어 붙여 문자열 만들기 (0) | 2023.10.25 |
---|---|
[프로그래머스/C++] Lv.0 배열 만들기 (0) | 2023.10.24 |
[프로그래머스/C++] Lv.0 수열과 구간 쿼리 3 (0) | 2023.10.20 |
[프로그래머스/C++] Lv.0 수 조작하기 2 (0) | 2023.10.20 |
[프로그래머스/C++] Lv.0 수 조작하기 1 (0) | 2023.10.19 |