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 d4a2d80 commit ab6257dCopy full SHA for ab6257d
tests/data/day14/test_01_input.txt
@@ -0,0 +1,12 @@
1
+p=0,4 v=3,-3
2
+p=6,3 v=-1,-3
3
+p=10,3 v=-1,2
4
+p=2,0 v=2,-1
5
+p=0,0 v=1,3
6
+p=3,0 v=-2,-2
7
+p=7,6 v=-1,-3
8
+p=3,0 v=-1,-2
9
+p=9,3 v=2,3
10
+p=7,3 v=-1,2
11
+p=2,4 v=2,-3
12
+p=9,5 v=-3,-3
tests/test_14.py
@@ -0,0 +1,10 @@
+from aoc.models.tester import TestSolutionUtility
+
+def test_day14_part1():
+ TestSolutionUtility.run_test(
+ day=14,
+ is_raw=False,
+ part_num=1,
+ expected=12,
+ )
0 commit comments