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 3801559 commit 75dcc8cCopy full SHA for 75dcc8c
tests/data/day12/test_01_input.txt
@@ -0,0 +1,10 @@
1
+RRRRIICCFF
2
+RRRRIICCCF
3
+VVRRRCCFFF
4
+VVRCCCJFFF
5
+VVVVCJJCFE
6
+VVIVCCJJEE
7
+VVIIICJJEE
8
+MIIIIIJJEE
9
+MIIISIJEEE
10
+MMMISSJEEE
tests/data/day12/test_02_input.txt
tests/test_12.py
@@ -0,0 +1,19 @@
+from aoc.models.tester import TestSolutionUtility
+
+def test_day12_part1():
+ TestSolutionUtility.run_test(
+ day=12,
+ is_raw=False,
+ part_num=1,
+ expected=1930,
+ )
11
12
13
+def test_day12_part2():
14
15
16
17
+ part_num=2,
18
+ expected=1206,
19
0 commit comments