【leetcode】正则表达式匹配【python】【递归,后序遍历】

题目地址 class Solution(object): def myMatch(self, s, p, s_index, p_index): print(s_index, p_index) if p == '' and s != '': #print(1) return False if s
相关文章
相关标签/搜索