摘要:
题目说明 动态路径规划 以s="aab",p="c * a * b"来说明整个的过程 class Solution: def isMatch(self, s: str, p: str): if not p: return not s if not s and len(p) == 1: return 阅读全文
posted @ 2021-11-17 09:01
xingye_z
阅读(62)
评论(0)
推荐(0)
浙公网安备 33010602011771号