13 lines
194 B
Python
13 lines
194 B
Python
|
#!/usr/bin/env python3
|
||
|
|
||
|
from day08 import *
|
||
|
|
||
|
|
||
|
def test_part1() -> None:
|
||
|
with open("day08.txt") as f:
|
||
|
assert part1(f) == 1538
|
||
|
|
||
|
|
||
|
def test_part2() -> None:
|
||
|
assert part2() == 496125
|