mirror of
https://github.com/jneug/adventofcode.git
synced 2026-04-14 06:43:33 +02:00
5 lines
111 B
Python
5 lines
111 B
Python
input = []
|
|
with open('day5_input.txt', 'r') as f:
|
|
for line in f.readlines():
|
|
input.append(line.strip())
|