Question-int countOccurrences(const vector& v, int k);
Implement the given function above. The first argument of the function is a vector of "v" integers and the second argument is an integer "k". The function returns the number of times "k" occurs in "v".
This one is complex and I don't know how to do it