leetcode 10. 正则表达式匹配 python

记录一下

class Solution(object):
    def isMatch(self, s, p):
        if s==p:
            return True
        if p=='':
            return False
        s_cur=0
        p_cur=0
        while True:
            if p_cur>=len(p) and s_cur=len(s):
                    return False
                if p[p_cur]=='.':
                    p_cur+=1
                    s_cur+=1
                    continue
                if p[p_cur]!=s[s_cur]:
                    return False
                p_cur+=1
                s_cur+=1
                continue
            if p_cur+1

你可能感兴趣的:(leetcode 10. 正则表达式匹配 python)