From 8d65acf76064ba8aaf87fe8087f2f4e10f053e76 Mon Sep 17 00:00:00 2001 From: AmirMohammad Hosseini Nasab Date: Fri, 12 Aug 2022 12:55:28 +0430 Subject: [PATCH] Add link to regex_match.py --- dynamic_programming/regex_match.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/dynamic_programming/regex_match.py b/dynamic_programming/regex_match.py index dc76eedeb..bb2ed2d3a 100644 --- a/dynamic_programming/regex_match.py +++ b/dynamic_programming/regex_match.py @@ -3,6 +3,8 @@ Regex matching check if a text matches wildcard pattern or not. Pattern: '.' Matches any single character. '*' Matches zero or more of the preceding element. +More info: + https://medium.com/trick-the-interviwer/regular-expression-matching-9972eb74c03 """