2021 Day 25 Part 1

This commit is contained in:
Akumatic
2021-12-25 21:32:39 +01:00
parent cb067ecef9
commit bf2efe4d5a
7 changed files with 525 additions and 3 deletions

12
2021/25/test_code.py Normal file
View File

@ -0,0 +1,12 @@
# 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()