deno.land / x / masx200_leetcode_test@10.6.5 / check-if-a-word-occurs-as-a-prefix-of-any-word-in-a-sentence / index.ts

نووسراو ببینە
1
2
3
4
5
6
7
8
9
10
11
export default function isPrefixOfWord( sentence: string, searchWord: string,): number { const index = sentence.split(" ").findIndex((a) => a.startsWith(searchWord) );
return index < 0 ? index : index + 1;}
masx200_leetcode_test

Version Info

Tagged at
2 years ago