0030. Substring with Concatenation of All Words
https://leetcode.com/problems/substring-with-concatenation-of-all-words
Description
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:
Example 2:
Example 3:
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.
ac1: 2 maps
time O(n k m), k is word count, m is word length space O(2k), k is word count
Last updated