#!/usr/bin/env python3
from day04 import *
def test_part1() -> None:
sections = open("day04.txt")
assert part1(sections) == 588
sections.close()
def test_part2() -> None:
assert part2(sections) == 911