12 lines
152 B
Python
12 lines
152 B
Python
|
#!/usr/bin/env python3
|
||
|
|
||
|
from day01 import *
|
||
|
|
||
|
|
||
|
def test_part1() -> None:
|
||
|
assert part1() == 74
|
||
|
|
||
|
|
||
|
def test_part2() -> None:
|
||
|
assert part2() == 1795
|