12 lines
166 B
Python
12 lines
166 B
Python
|
#!/usr/bin/env python3
|
||
|
|
||
|
from day06 import *
|
||
|
|
||
|
|
||
|
def test_part1() -> None:
|
||
|
assert part1(STRING) == 1929
|
||
|
|
||
|
|
||
|
def test_part2() -> None:
|
||
|
assert part2(STRING) == 3298
|