摘要: 题目描述: 方法一:暴力O(MN) class Solution: def findSubstring(self, s: str, words: List[str]) -> List[int]: res = [] if not s or not words: return res for j in 阅读全文
posted @ 2019-10-31 15:27 oldby 阅读(136) 评论(0) 推荐(0) 编辑