Given a sentence and a searchWord, check if searchWord is a prefix of any word in the sentence.Return the index of the first word where searchWord is a prefix, or -1 if there is no such word.The solution involves splitting the sentence into words and iterating through each word to check for a prefix match.If a match is found, return the 1-indexed position of the word, otherwise return -1.