mirror of
https://github.com/chylex/Advent-of-Code.git
synced 2025-07-29 15:59:07 +02:00
4 lines
120 B
Python
4 lines
120 B
Python
def read_input() -> list[str]:
|
|
with open("input.txt") as f:
|
|
return [line.strip() for line in f.readlines()]
|