2023 day 8.

This commit is contained in:
Mikaël Capelle
2023-12-08 07:28:50 +01:00
committed by Mikael CAPELLE
parent 759f47bfab
commit f2a65e03e5
4 changed files with 791 additions and 4 deletions

View File

@@ -0,0 +1,10 @@
LR
11A = (11B, XXX)
11B = (XXX, 11Z)
11Z = (11B, XXX)
22A = (22B, XXX)
22B = (22C, 22C)
22C = (22Z, 22Z)
22Z = (22B, 22B)
XXX = (XXX, XXX)

9
2023/tests/day8_p1.txt Normal file
View File

@@ -0,0 +1,9 @@
RL
AAA = (BBB, CCC)
BBB = (DDD, EEE)
CCC = (ZZZ, GGG)
DDD = (DDD, DDD)
EEE = (EEE, EEE)
GGG = (GGG, GGG)
ZZZ = (ZZZ, ZZZ)