1
0
Fork 0

Solve day 8

This commit is contained in:
Lars Martens 2023-12-08 14:28:23 +01:00
parent f16fae23ab
commit 9dbfc6043a
Signed by: haselkern
GPG key ID: B5CF1F363C179AD4
4 changed files with 207 additions and 2 deletions

5
input/08-test-1 Normal file
View file

@ -0,0 +1,5 @@
LLR
AAA = (BBB, BBB)
BBB = (AAA, ZZZ)
ZZZ = (ZZZ, ZZZ)

10
input/08-test-2 Normal file
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)