diff --git a/dynamic_programming/regex_match.py b/dynamic_programming/regex_match.py index bb2ed2d3a..316328d04 100644 --- a/dynamic_programming/regex_match.py +++ b/dynamic_programming/regex_match.py @@ -1,5 +1,5 @@ """ -Regex matching check if a text matches wildcard pattern or not. +Regex matching check if a text matches pattern or not. Pattern: '.' Matches any single character. '*' Matches zero or more of the preceding element.