题目大意: 两串字符串 s 和 t 是否 anagrams(下文简称ANA) 的定义是: 是否能将 s 内的字母打乱顺序后再拼接得到 t 我们考虑互相ANA的两串字符串 s 和 t 我们称 t 是 s 的 reducible anagram(下文简称RANA),在当存在一个数 k≥2,且满足下面的定义时: 1.s 可以被分割成 k 个非空子串 s1,s2,...,sk 2.t 对应着 s 的每个子串的长度也这样分割 t1,t2,...tk 3.分割后对应的 si 和 ti (1≤i≤k)都是互相…
Given a string s and a non-empty string p, find all the start indices of p's anagrams in s. Strings consists of lowercase English letters only and the length of both strings s and p will not be larger than 20,100. The order of output does not matter.…