(Intersection) Write a function that returns the intersection of two vectors using the following header:
template T>vector intersect(const vector& v1, const vector& v2) The intersection of two vectors contains the common elements that appear in both vectors. For example, the intersection of two vectors {2, 3, 1, 5} and {3, 4, 5} is {3, 5}. Write a test program that prompts the user to enter two vectors, each with five strings, and displays their intersection. Here is a sample run:

We need at least 10 more requests to produce the solution.
0 / 10 have requested this problem solution
The more requests, the faster the answer.