Regex Generator
A challenge by
mousetail
Description
Given two words—the “good” word and the “bad” word—you need to output 5 regexes and 5 extra words as pairs. Each regex must match the good word and its paired extra word, but none of the other words (the bad word or other extra words).
For instance, if your words where apple banana
, you might output:
applex? applex applx?e applxe appx?le appxle apx?ple apxple ax?pple axpple
Each word will and must consist only of ACII lower case letters.
The judge will attempt to figure out your pattern and generate adversarial examples.
IO format
Input will be a list of tab separated words, first representing the good word, the second the bad word.
Each output must be 5 lines each with 2 words, first representing the regex the second representing the extra word. Each output should be separated by a double newline.
Regex Specification
Leaderboard
Author | Score | ||
---|---|---|---|
#1 |
|
lukegustafson | 73 |
#2 |
|
KatieLG | 83 |
#3 |
|
Natanaelel | 91 |
#4 |
|
AlephSquirrel | 106 |
#5 |
|
mousetail | 113 |