diff options
| author | omagdy7 <omar.professional8777@gmail.com> | 2023-12-08 21:08:47 +0200 |
|---|---|---|
| committer | omagdy7 <omar.professional8777@gmail.com> | 2023-12-08 21:08:47 +0200 |
| commit | c28331656842bcb3363819fe2ee02909508f3341 (patch) | |
| tree | f805f4c69fce5b66f0efd621cef462bada9f7998 /2023/Rust/input/day8_1.test | |
| parent | 69907627111714807a88b074d12428f92768b28f (diff) | |
| download | aoc-c28331656842bcb3363819fe2ee02909508f3341.tar.xz aoc-c28331656842bcb3363819fe2ee02909508f3341.zip | |
Day 8 done.
Diffstat (limited to '2023/Rust/input/day8_1.test')
| -rw-r--r-- | 2023/Rust/input/day8_1.test | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/2023/Rust/input/day8_1.test b/2023/Rust/input/day8_1.test new file mode 100644 index 0000000..9029a1b --- /dev/null +++ b/2023/Rust/input/day8_1.test @@ -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) |
