Skip to content

Commit 9af5be3

Browse files
authored
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)