aoc/2023/day01_test.py

14 lines
232 B
Python
Raw Normal View History

2023-12-01 14:18:05 -05:00
#!/usr/bin/env python3
from day01 import *
def test_part1() -> None:
with open("day01.txt") as p:
assert part1(p) == 54601
def test_part2() -> None:
with open("day01.txt") as p:
assert part2(p) == 54078