This commit is contained in:
2022-11-30 18:20:36 +08:00
parent b13cfa00bb
commit 72555b19e0
132 changed files with 332 additions and 334 deletions

View File

@@ -3,7 +3,7 @@
// 动态规划
// 当前匹配成功 == 之前匹配成功 && 当前字符匹配成功
bool Solution::isMatch(string s, string p) {
bool S0010::isMatch(string s, string p) {
int m = s.size();
int n = p.size();