Return the position where the search text first appears inside the sentence. Counting starts at 0. If it is not there at all, return -1 — which is what indexOf already does.
int positionOf(String sentence, String search)
Examples
There are also 3 hidden tests you can't see. Solve the problem, not the examples.