728x90
https://school.programmers.co.kr/learn/courses/30/lessons/181927?language=cpp
소스코드
#include <string>
#include <vector>
using namespace std;
vector<int> solution(vector<int> num_list) {
vector<int> answer;
int last = num_list[num_list.size() - 1];
int before = num_list[num_list.size() - 2];
num_list.push_back(last > before ? last - before : last * 2);
return num_list;
}
728x90
'코딩공부 > 프로그래머스' 카테고리의 다른 글
[프로그래머스]Lv.0 수열과 구간 쿼리 3 C++ (0) | 2023.08.07 |
---|---|
[프로그래머스]Lv.0 수 조작하기 2 C++ (map 이용) (0) | 2023.08.07 |
[프로그래머스]Lv.0 이어 붙인 수 C++(int to string, string to int) (0) | 2023.08.04 |
[프로그래머스]Lv.0 원소들의 곱과 합 2 C++ (0) | 2023.08.04 |
[프로그래머스]Lv.0 주사위 게임 2 C++ (set의 활용 (0) | 2023.08.04 |