diff options
author | Martin Ashby <martin@ashbysoft.com> | 2022-12-17 22:06:56 +0000 |
---|---|---|
committer | Martin Ashby <martin@ashbysoft.com> | 2022-12-17 22:06:56 +0000 |
commit | 425c3a241fb9b3a13ef52ccf300dc6f214cb4520 (patch) | |
tree | 2db1ed0284f0524c94e8d92cad48c4902ec8e4ca /input/day16_ex.txt | |
parent | 627266fdf043443de2d45783b800563299d6a899 (diff) | |
download | aoc2022-425c3a241fb9b3a13ef52ccf300dc6f214cb4520.tar.gz aoc2022-425c3a241fb9b3a13ef52ccf300dc6f214cb4520.tar.bz2 aoc2022-425c3a241fb9b3a13ef52ccf300dc6f214cb4520.tar.xz aoc2022-425c3a241fb9b3a13ef52ccf300dc6f214cb4520.zip |
day16 part 1
Diffstat (limited to 'input/day16_ex.txt')
-rw-r--r-- | input/day16_ex.txt | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/input/day16_ex.txt b/input/day16_ex.txt new file mode 100644 index 0000000..85fa5b0 --- /dev/null +++ b/input/day16_ex.txt @@ -0,0 +1,10 @@ +Valve AA has flow rate=0; tunnels lead to valves DD, II, BB +Valve BB has flow rate=13; tunnels lead to valves CC, AA +Valve CC has flow rate=2; tunnels lead to valves DD, BB +Valve DD has flow rate=20; tunnels lead to valves CC, AA, EE +Valve EE has flow rate=3; tunnels lead to valves FF, DD +Valve FF has flow rate=0; tunnels lead to valves EE, GG +Valve GG has flow rate=0; tunnels lead to valves FF, HH +Valve HH has flow rate=22; tunnel leads to valve GG +Valve II has flow rate=0; tunnels lead to valves AA, JJ +Valve JJ has flow rate=21; tunnel leads to valve II
\ No newline at end of file |