2025-01-09 20:29:41 +08:00
< p > Given two strings < code > s< / code > and < code > p< / code > , return an array of all the start indices of < code > p< / code > ' s < span data-keyword = "anagram" > anagrams< / span > in < code > s< / code > . You may return the answer in < strong > any order< / strong > .< / p >
2022-03-27 20:52:13 +08:00
< p > < / p >
2023-12-09 18:42:21 +08:00
< p > < strong class = "example" > Example 1:< / strong > < / p >
2022-03-27 20:52:13 +08:00
< pre >
< strong > Input:< / strong > s = " cbaebabacd" , p = " abc"
< strong > Output:< / strong > [0,6]
< strong > Explanation:< / strong >
The substring with start index = 0 is " cba" , which is an anagram of " abc" .
The substring with start index = 6 is " bac" , which is an anagram of " abc" .
< / pre >
2023-12-09 18:42:21 +08:00
< p > < strong class = "example" > Example 2:< / strong > < / p >
2022-03-27 20:52:13 +08:00
< pre >
< strong > Input:< / strong > s = " abab" , p = " ab"
< strong > Output:< / strong > [0,1,2]
< strong > Explanation:< / strong >
The substring with start index = 0 is " ab" , which is an anagram of " ab" .
The substring with start index = 1 is " ba" , which is an anagram of " ab" .
The substring with start index = 2 is " ab" , which is an anagram of " ab" .
< / pre >
< p > < / p >
< p > < strong > Constraints:< / strong > < / p >
< ul >
< li > < code > 1 < = s.length, p.length < = 3 * 10< sup > 4< / sup > < / code > < / li >
< li > < code > s< / code > and < code > p< / code > consist of lowercase English letters.< / li >
< / ul >