Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR CPP

includes c++

#include <bits/stdc++.h>
using namespace std;
int main()
{
    vector<int> v1 ={1,2,3,4,5};
    vector<int> v2 ={1,4};
    cout<<includes(v1.begin(),v1.end(),v2.begin(),v2.end());
    return 0;
}
Source by stackoverflow.com #
 
PREVIOUS NEXT
Tagged: #includes
ADD COMMENT
Topic
Name
2+4 =