728x90
반응형
문제
코드
#include <vector>
using namespace std;
vector<int> solution(vector<int> num_list) {
vector<int> answer;
for (int i = 0; i < num_list.size(); ++i)
{
answer.emplace_back(num_list[i]);
if (i == num_list.size() - 1)
{
if (num_list[i] > num_list[i - 1])
{
answer.emplace_back(num_list[i] - num_list[i - 1]);
}
else
{
answer.emplace_back(num_list[i] * 2);
}
}
}
return answer;
}
728x90
반응형
'코딩테스트 > 프로그래머스(C++)_Level.0' 카테고리의 다른 글
[프로그래머스/C++] Lv.0 수 조작하기 2 (0) | 2023.10.20 |
---|---|
[프로그래머스/C++] Lv.0 수 조작하기 1 (0) | 2023.10.19 |
[프로그래머스/C++] Lv.0 이어 붙인 수 (0) | 2023.10.18 |
[프로그래머스/C++] Lv.0 모든 원소들의 곱과 합 (0) | 2023.10.17 |
[프로그래머스/C++] Lv.0 주사위 게임2 (0) | 2023.10.17 |