ben
/
aoc
1
0
Fork 0

add missing test input for 2022 day 16
continuous-integration/drone/push Build is passing Details

This commit is contained in:
Ben Harris 2023-12-03 01:55:27 -05:00
parent ace7201859
commit 31fe78fbc3
2 changed files with 11 additions and 0 deletions

View File

@ -57,6 +57,7 @@ public class Test2022
[DataRow(typeof(Day13), "13", "140")]
[DataRow(typeof(Day14), "24", "93")]
[DataRow(typeof(Day15), "26", "56000011")]
// [DataRow(typeof(Day16), "1651", "")]
public void CheckTestInputs(Type dayType, string part1, string part2) =>
Common.CheckDay(dayType, part1, part2, true);
}

View File

@ -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