Substring with Concatenation of All Words

You are given a string, s, and a list of words, words, that are all of the same length. Find all starting indices of substring(s) in s that is a concatenation of each word in words exactly once and without any intervening characters.

Example 1:

Input:
  s = "barfoothefoobarman",
  words = ["foo","bar"]
Output: [0,9]
Explanation: Substrings starting at index 0 and 9 are "barfoor" and "foobar" respectively.
The output order does not matter, returning [9,0] is fine too.

Example 2:

Input:
  s = "wordgoodgoodgoodbestword",
  words = ["word","good","best","word"]
Output: []

分析

就是needle in haystack, target数组所有字符都在而且连续,顺序可以不计,所以用Map

维护i在s里,经过所有s位置,到target总长度位置,记得这里要+1

内循环维护j,每个词每个词的跳,最后判断j == target words total

这里内循环用新map判断合法。

Python

Last updated

Was this helpful?