feb 2015 problem 1 / 3 / 4

This commit is contained in:
Xevion
2020-02-21 05:45:14 -06:00
parent bc11562f49
commit ba32bcbd62
6 changed files with 178 additions and 0 deletions

View File

@@ -0,0 +1,11 @@
# Automaton
Run my solution on **[repl.it](https://repl.it/@Xevion/A-Computer-Science-February-2015-Automaton)!**
A rather simple problem, despite the overwhelming complicated background information to understand what it's talking about in the first paragraph.
I recommend skipping the first paragraph, and simply looking at the second one very carefully. In short, the entire problem is basically Regex.
All you have to do is manipulate the input data, create a function for matching, loop until you find a input that works, and you're done.
There was one big problem though I encountered, one that would have been a failed submission in the end.