summaryrefslogtreecommitdiff
path: root/2017/inputs/day_25.txt
diff options
context:
space:
mode:
authorJustin Wernick <justin@worthe-it.co.za>2024-01-21 21:54:10 +0200
committerJustin Wernick <justin@worthe-it.co.za>2024-01-21 21:54:10 +0200
commit939fb8cd409117da1c1ef9d13bfb143520912c76 (patch)
tree5492a8e4a3ff9404889390e70f22dd3b501ae4e4 /2017/inputs/day_25.txt
parent705e1a6ab99ee3292f8861b70664bfd0d7c2ea1a (diff)
Clear out old input filesHEADmain
Diffstat (limited to '2017/inputs/day_25.txt')
-rw-r--r--2017/inputs/day_25.txt62
1 files changed, 0 insertions, 62 deletions
diff --git a/2017/inputs/day_25.txt b/2017/inputs/day_25.txt
deleted file mode 100644
index 892ee98..0000000
--- a/2017/inputs/day_25.txt
+++ /dev/null
@@ -1,62 +0,0 @@
-Begin in state A.
-Perform a diagnostic checksum after 12667664 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 C.
-
-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 D.
-
-In state C:
- If the current value is 0:
- - Write the value 0.
- - Move one slot to the left.
- - Continue with state B.
- If the current value is 1:
- - Write the value 0.
- - Move one slot to the left.
- - Continue with state E.
-
-In state D:
- If the current value is 0:
- - Write the value 1.
- - Move one slot to the right.
- - Continue with state A.
- If the current value is 1:
- - Write the value 0.
- - Move one slot to the right.
- - Continue with state B.
-
-In state E:
- If the current value is 0:
- - Write the value 1.
- - Move one slot to the left.
- - Continue with state F.
- If the current value is 1:
- - Write the value 1.
- - Move one slot to the left.
- - Continue with state C.
-
-In state F:
- If the current value is 0:
- - Write the value 1.
- - Move one slot to the right.
- - Continue with state D.
- If the current value is 1:
- - Write the value 1.
- - Move one slot to the right.
- - Continue with state A.