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 edad87f commit 377dcfeCopy full SHA for 377dcfe
tests/data/day13/test_01_input.txt
@@ -0,0 +1,15 @@
1
+Button A: X+94, Y+34
2
+Button B: X+22, Y+67
3
+Prize: X=8400, Y=5400
4
+
5
+Button A: X+26, Y+66
6
+Button B: X+67, Y+21
7
+Prize: X=12748, Y=12176
8
9
+Button A: X+17, Y+86
10
+Button B: X+84, Y+37
11
+Prize: X=7870, Y=6450
12
13
+Button A: X+69, Y+23
14
+Button B: X+27, Y+71
15
+Prize: X=18641, Y=10279
tests/test_13.py
@@ -0,0 +1,10 @@
+from aoc.models.tester import TestSolutionUtility
+def test_day13_part1():
+ TestSolutionUtility.run_test(
+ day=13,
+ is_raw=False,
+ part_num=1,
+ expected=480,
+ )
0 commit comments