728x90
반응형
문제
코드
#include <string>
#include <vector>
using namespace std;
int solution(vector<int> num_list) {
int answer = 0;
string even;
string odd;
for (const int n : num_list)
{
if (n % 2 == 0)
{
even += (to_string(n));
}
else
{
odd += (to_string(n));
}
}
answer = stoi(even) + stoi(odd);
return answer;
}
728x90
반응형
'코딩테스트 > 프로그래머스(C++)_Level.0' 카테고리의 다른 글
[프로그래머스/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 |
[프로그래머스/C++] Lv.0 등차수열의 특정한 항만 더하기 (0) | 2023.10.16 |