Skip to content
Permalink
master
Switch branches/tags

Name already in use

A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
Go to file
 
 
Cannot retrieve contributors at this time
/* Write a function to find the position of the first occurance
of a given value in a vector.
The function must be called find_position.
It must take 3 parameters:
- an iterator to the beginning of a vector of integers
- an iterator to the end of a vector of integers
- an integer value to search for
The function must return an integer representing the position of
the search value in the vector.
If the value is not in the vector then you should return -1
*/