It's time to get your regex on!
Imagine you're a master of the dark arts, weaving your code like a true regex ninja.
Find the matching pattern:
abc defgh
(abc|def|ghi) defgh
Find the shortest solution:
abc def
^(abc def|def abc)$
Try to make it look like a normal string:
abc def
(abc def|def abc|def abc def)