commit 93a0cc14179bd8a2756f5fd49b25358d299940ff parent 2d11fa4297c9b11fd5c88ec446e477698cd9e0c7 Author: RahulSannapureddy <rahul.sannapureddy@gmail.com> Date: Wed, 25 Mar 2026 10:00:00 +0530 Week 1: Add initial test inputs and regex patterns (Part 3: Finalizing) Diffstat:
| M | inputs/regexes.txt | | | 5 | +++++ |
| M | inputs/test_strings.txt | | | 5 | +++++ |
2 files changed, 10 insertions(+), 0 deletions(-)
diff --git a/inputs/regexes.txt b/inputs/regexes.txt @@ -13,3 +13,8 @@ ab*c # Match 'a', then any character, then 'b' a.b +# Match literal 'abc' +abc + +# Match complex nested expression +(a|b)*c(d|e)+ diff --git a/inputs/test_strings.txt b/inputs/test_strings.txt @@ -13,3 +13,8 @@ aaaa bbbb x axb +ayb +(a|b) +abc +abcd +abce