摘要: 题目描述: python 回溯 +kmp next数组 class Solution: def findGoodStrings(self, n: int, s1: str, s2: str, evil: str) -> int: MOD = int(1e9 + 7) m = len(evil) or 阅读全文
posted @ 2020-03-30 16:15 oldby 阅读(200) 评论(0) 推荐(0) 编辑