14 lines
209 B
Python
14 lines
209 B
Python
|
#!/usr/bin/env python3
|
||
|
|
||
|
from day05 import *
|
||
|
|
||
|
|
||
|
def test_part1() -> None:
|
||
|
f = open("day05.txt")
|
||
|
assert part1(f) == "FCVRLMVQP"
|
||
|
f.close()
|
||
|
|
||
|
|
||
|
def test_part2() -> None:
|
||
|
assert part2() == "RWLWGJGFD"
|