프로그래머스 181844 배열의 원소 삭제하기

1 개요[ | ]

프로그래머스 181844 배열의 원소 삭제하기

2 C++[ | ]

#include <string>
#include <vector>
#include <algorithm>

using namespace std;

vector<int> solution(vector<int> arr, vector<int> delete_list) {
    vector<int> answer;
    for(int i=0; i<arr.size(); i++) {
        if(find(delete_list.begin(), delete_list.end(), arr[i]) == delete_list.end()) {
            answer.emplace_back(arr[i]);
        }
    }
    return answer;
}
문서 댓글 ({{ doc_comments.length }})
{{ comment.name }} {{ comment.created | snstime }}