728x90
https://school.programmers.co.kr/learn/courses/30/lessons/181928?language=cpp
소스코드
#include <string>
#include <vector>
using namespace std;
int solution(vector<int> num_list) {
int answer = 0;
string a = "";
string b = "";
for (int i : num_list)
{
if (i % 2 == 1)
a += to_string(i);
else
b += to_string(i);
}
return stoi(b) + stoi(a);
}
728x90
'코딩공부 > 프로그래머스' 카테고리의 다른 글
[프로그래머스]Lv.0 수 조작하기 2 C++ (map 이용) (0) | 2023.08.07 |
---|---|
[프로그래머스]Lv.0 마지막 두 원소 C++ (0) | 2023.08.04 |
[프로그래머스]Lv.0 원소들의 곱과 합 2 C++ (0) | 2023.08.04 |
[프로그래머스]Lv.0 주사위 게임 2 C++ (set의 활용 (0) | 2023.08.04 |
[프로그래머스]Lv.0 등차수열의 특정한 항만 더하기C++ (0) | 2023.08.04 |