FromLeetcodeStatus太难了不会DateJun 2, 2024Tags滑动窗口Difficulty中等Linkhttps://leetcode.cn/problems/find-all-anagrams-in-a-string/description/?envType=study-plan-v2&envId=top-100-liked题面给定两个字符串 s 和 p,找到 s 中所有 p 的 异位词 的子串,返回这些子串的起始索引。不考虑答案输出的顺序。异位词 指由相同字母重排列形成的字符串(包括相同的字符串)。示例 1:示例 2:提示:1 <= s.length, p.length <= 3 * 104s 和 p 仅包含小写字母 思路 题解