We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7cc13d3 commit 97219f3Copy full SHA for 97219f3
check-if-a-word-occurs-as-a-prefix-of-any-word-in-a-sentence/index.go
@@ -13,7 +13,7 @@ func isPrefixOfWord(sentence string, searchWord string) int {
13
}
14
15
16
-//func FindIndex[S ~[]T, T any](items S, f func(el T) bool) int {
+// func FindIndex[S ~[]T, T any](items S, f func(el T) bool) int {
17
func FindIndex(items []string, f func(el string) bool) int {
18
for i, el := range items {
19
if f(el) {
0 commit comments