题目
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.
For example, given:
s: “barfoothefoobarman”
words: [“foo”, “bar”]
You should return the indices: [0,9].
(order does not matter).
题意
实现字符串匹配,我做的时间复杂度比较高,勉强accepted,暂时还没有看懂比较简单的代码(后期可以再看看)
Python实现
|
|