1118-Number-of-Days-in-a-Month 1119-Remove-Vowels-from-a-String 1120-Maximum-Average-Subtree 1121-Divide-Array-Into-Increasing-Sequences 1124-Longest-Well-Performing-Interval .gitignore qrcode.png readme.md Bre
package leetcode func findSubstring(s string, words []string) []int { if len(words) == 0 { return []int{} } res := []int{} counter := map[string]int{} for _, w := range words { counter[w]++ } length, totalLen, tmpCounter := len(words[0]), len(words[0])*len(w...