1
0
mirror of https://github.com/chylex/Advent-of-Code.git synced 2025-07-29 15:59:07 +02:00
Advent-of-Code/2022/utils/input.py
2022-12-03 13:28:29 +01:00

4 lines
120 B
Python

def read_input() -> list[str]:
with open("input.txt") as f:
return [line.strip() for line in f.readlines()]