Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 9af5be3

Browse files
authoredJun 20, 2025··
Update README.md
1 parent b496d54 commit 9af5be3

File tree

1 file changed

+2
-1
lines changed
  • solution/0000-0099/0010.Regular Expression Matching

1 file changed

+2
-1
lines changed
 

‎solution/0000-0099/0010.Regular Expression Matching/README.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -365,7 +365,8 @@ bool isMatch(char* s, char* p) {
365365
m = strlen(s);
366366
n = strlen(p);
367367
memset(f, 0, sizeof(f));
368-
return dfs(0, 0)
368+
return dfs(0, 0);
369+
}
369370
```
370371
371372
#### PHP

0 commit comments

Comments
 (0)
Please sign in to comment.