13 lines
195 B
Python
13 lines
195 B
Python
|
#!/usr/bin/env python3
|
||
|
|
||
|
from day02 import *
|
||
|
|
||
|
|
||
|
def test_part1() -> None:
|
||
|
with open("day02.txt") as f:
|
||
|
assert part1(f) == 2810
|
||
|
|
||
|
|
||
|
def test_part2() -> None:
|
||
|
assert part2(p2) == 69110
|