12 lines
159 B
Python
12 lines
159 B
Python
|
#!/usr/bin/env python3
|
||
|
|
||
|
from day04 import *
|
||
|
|
||
|
|
||
|
def test_part1() -> None:
|
||
|
assert part1() == 346386
|
||
|
|
||
|
|
||
|
def test_part2() -> None:
|
||
|
assert part2() == 9958218
|