We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 91fe2c4 commit 5ba60e7Copy full SHA for 5ba60e7
aoc_2024/src/day_20.rs
@@ -86,36 +86,3 @@ impl Problem {
86
costs
87
}
88
89
-
90
-#[cfg(test)]
91
-mod test {
92
- use indoc::indoc;
93
94
- const CASE: &str = indoc! {"
95
- ###############
96
- #...#...#.....#
97
- #.#.#.#.#.###.#
98
- #S#...#.#.#...#
99
- #######.#.#.###
100
- #######.#.#...#
101
- #######.#.###.#
102
- ###..E#...#...#
103
- ###.#######.###
104
- #...###...#...#
105
- #.#####.#.###.#
106
- #.#...#.#.#...#
107
- #.#.#.#.#.#.###
108
- #...#...#...###
109
110
- "};
111
112
- #[test]
113
- fn part_a() {
114
- assert_eq!(super::part_a(CASE), 44.into());
115
- }
116
117
118
- fn part_b() {
119
- assert_eq!(super::part_b(CASE), ().into());
120
121
-}
0 commit comments