mirror of
https://github.com/thib8956/advent-of-code.git
synced 2025-08-24 08:21:57 +00:00
make 2020 compatible with run.py
This commit is contained in:
@@ -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)
|
||||
|
||||
|
Reference in New Issue
Block a user