Advent-of-Code/2021/25/test_code.py
2021-12-25 21:32:39 +01:00

13 lines
236 B
Python

# SPDX-License-Identifier: MIT
# Copyright (c) 2021 Akumatic
from code import *
def test():
vals = read_file("test_input.txt")
assert part1(vals) == 58
print("Passed Part 1")
if __name__ == "__main__":
test()