Challenge: Find Element Index
Tarea
Swipe to start coding
Write a function named findIndex that takes a std::vector<int> and an int value as arguments. Use the std::find algorithm from the Standard Library to search for the value in the vector. If the value is found, return its index; if not, return -1.
- Use the
std::findalgorithm to perform the search. - Return the zero-based index of the found element.
- Return
-1if the value is not present in the vector.
Solución
¿Todo estuvo claro?
¡Gracias por tus comentarios!
Sección 3. Capítulo 2
single
Pregunte a AI
Pregunte a AI
Pregunte lo que quiera o pruebe una de las preguntas sugeridas para comenzar nuestra charla
Awesome!
Completion rate improved to 6.67
Challenge: Find Element Index
Desliza para mostrar el menú
Tarea
Swipe to start coding
Write a function named findIndex that takes a std::vector<int> and an int value as arguments. Use the std::find algorithm from the Standard Library to search for the value in the vector. If the value is found, return its index; if not, return -1.
- Use the
std::findalgorithm to perform the search. - Return the zero-based index of the found element.
- Return
-1if the value is not present in the vector.
Solución
¿Todo estuvo claro?
¡Gracias por tus comentarios!
Sección 3. Capítulo 2
single