Fix reading of input file
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
2021-12-20 12:38:13 +01:00
parent 310668d4a6
commit 732c455dfe

View File

@@ -72,7 +72,7 @@ def game_of_life(input):
input = list()
p = Path(__file__).with_name('input2.txt')
p = Path(__file__).with_name('input.txt')
with open(p) as f:
input = f.readlines()
part_1(input)