#ifndef VECTOR_UTILS_H #define VECTOR_UTILS_H #include #include using namespace std; class VectorUtils { public: bool is_element_in_vector(vector v,int element); }; #endif