【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
相關文章
相關標籤/搜索