摘要: 题目描述: 回溯: class Solution: def isMatch(self, s: str, p: str) -> bool: def helper(s,p): if not p: return not bool(s) if len(p)>=2 and p[1]=="*": if s an 阅读全文
posted @ 2019-10-17 19:06 oldby 阅读(184) 评论(0) 推荐(0) 编辑