2017 Complete!

This commit is contained in:
2017-12-26 14:12:20 -06:00
parent e78eb5781e
commit 16ffec256f
9 changed files with 330 additions and 96 deletions

22
2017/day25/testinput Normal file
View File

@@ -0,0 +1,22 @@
Begin in state A.
Perform a diagnostic checksum after 6 steps.
In state A:
If the current value is 0:
- Write the value 1.
- Move one slot to the right.
- Continue with state B.
If the current value is 1:
- Write the value 0.
- Move one slot to the left.
- Continue with state B.
In state B:
If the current value is 0:
- Write the value 1.
- Move one slot to the left.
- Continue with state A.
If the current value is 1:
- Write the value 1.
- Move one slot to the right.
- Continue with state A.