728x90
반응형
문제
코드
#include <iostream>
#include <string>
#include <vector>
using namespace std;
vector<string> solution(vector<string> todo_list, vector<bool> finished) {
vector<string> answer;
for (int i = 0; i < todo_list.size(); ++i)
{
if (!finished[i])
{
answer.emplace_back(todo_list[i]);
}
}
return answer;
}
728x90
반응형
'코딩테스트 > 프로그래머스(C++)_Level.0' 카테고리의 다른 글
[프로그래머스/C++] Lv.0 수열과 구간 쿼리 1 (0) | 2023.11.14 |
---|---|
[프로그래머스/C++] Lv.0 n보다 커질 때까지 더하기 (0) | 2023.11.13 |
[프로그래머스/C++] Lv.0 5명씩 (0) | 2023.11.13 |
[프로그래머스/C++] Lv.0 홀수 vs 짝수 (0) | 2023.11.13 |
[프로그래머스/C++] Lv.0 n개 간격의 원소들 (0) | 2023.11.13 |