Find the Index

Published by morrle in

Create a function that takes an array and a string as arguments and returns the index of the string.

Examples

findIndex(new String[]{"hi", "edabit", "fgh", "abc"}, "fgh") ➞ 2

findIndex(new String[]{"Red", "blue", "Blue", "Green"}, "blue") ➞ 1

findIndex(new String[]{"a", "g", "y", "d"}, "d") ➞ 3

findIndex(new String[]{"Pineapple", "Orange", "Grape", "Apple"}, "Pineapple") ➞ 0

Notes

  • Don't forget to return the result.
  • If you are stuck, find help in the Resources tab.
Watch a quick demo on how Edabit works.