Solve day 3

This commit is contained in:
Nettika
2023-12-09 19:33:23 -08:00
parent 5a938d3f44
commit 637b097245
6 changed files with 374 additions and 0 deletions

10
03/puzzle_test.py Normal file
View File

@@ -0,0 +1,10 @@
from puzzle import solve_pt_1, solve_pt_2
from schematic_test import mock_input
def test_solve_pt_1():
assert solve_pt_1(mock_input) == 4361
def test_solve_pt_2():
assert solve_pt_2(mock_input) == 467835