Done day 25
[advent-of-code-17.git] / src / advent25 / advent25sample.txt
diff --git a/src/advent25/advent25sample.txt b/src/advent25/advent25sample.txt
new file mode 100644 (file)
index 0000000..52c31b4
--- /dev/null
@@ -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.
\ No newline at end of file