Skip to content

Latest commit

 

History

History
37 lines (17 loc) · 846 Bytes

README.md

File metadata and controls

37 lines (17 loc) · 846 Bytes

Description

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).

Tags: Hash Table, Two Pointers, String

思路

题意是

结语

如果你同我们一样热爱数据结构、算法、LeetCode,可以关注我们 GitHub 上的 LeetCode 题解:LeetCode-Solution