LeetCode 30. Substring with Concatenation of All Words
Question
You are given a string s
and an array of strings words
of the same length. Return all starting indices of substring(s) in s
that is a concatenation of each word in words
exactly once, in any order, and without any intervening characters.
You can return the answer in any order.
Example 1:
1 | Input: s = "barfoothefoobarman", words = ["foo","bar"] |
Example 2:
1 | Input: s = "wordgoodgoodgoodbestword", words = ["word","good","best","word"] |
Example 3:
1 | Input: s = "barfoofoobarthefoobarman", words = ["bar","foo","the"] |
Constraints:
1 <= s.length <= 104
s
consists of lower-case English letters.1 <= words.length <= 5000
1 <= words[i].length <= 30
words[i]
consists of lower-case English letters.
Source: https://leetcode.com/problems/substring-with-concatenation-of-all-words/
Solution
Sliding window with offset and step.
1 | // search by the step of wlen |
LeetCode 30. Substring with Concatenation of All Words
http://yenotes.org/2022/03/12/LeetCode-30-Substring-with-Concatenation-of-All-Words/