728x90
반응형
문제
코드
#include <string>
#include <vector>
using namespace std;
vector<int> solution(vector<int> num_list, int n) {
vector<int> answer;
for(int i = n; i<num_list.size(); ++i)
{
answer.emplace_back(num_list[i]);
}
for(int i = 0; i<n; ++i)
{
answer.emplace_back(num_list[i]);
}
return answer;
}
728x90
반응형
'코딩테스트 > 프로그래머스(C++)_Level.0' 카테고리의 다른 글
[프로그래머스/C++] Lv.0 n 번째 원소까지 (0) | 2023.11.13 |
---|---|
[프로그래머스/C++] Lv.0 왼쪽 오른쪽 (0) | 2023.11.13 |
[프로그래머스/C++] Lv.0 n 번째 원소부터 (0) | 2023.11.13 |
[프로그래머스/C++] Lv.0 배열 조각하기 (0) | 2023.11.13 |
[프로그래머스/C++] Lv.0 2의 영역 (0) | 2023.11.10 |