# # 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可 # # # @param s string字符串 # @param words string字符串一维数组 # @return int整型一维数组 from collections import Counter class Solution: def findSubstring(self , s: str, words: List[str]) -> List[int]: if not s or not words: return [] ...