make 2020 compatible with run.py

This commit is contained in:
2025-07-30 01:00:27 +02:00
parent f9abb90915
commit 9c76828788
14 changed files with 119 additions and 81 deletions

View File

@@ -17,5 +17,8 @@ def part2(inp):
if __name__ == "__main__":
with open("input.txt") as f:
part2(f.readlines())
import fileinput
lines = [x for x in fileinput.input()]
part1(lines)
part2(lines)