5 lines
78 B
Python
5 lines
78 B
Python
with open("input{day}.txt") as f:
|
|
lines = [line.rstrip() for line in f]
|
|
|
|
|
with open("input{day}.txt") as f:
|
|
lines = [line.rstrip() for line in f]
|
|
|
|
|