advent_of_code/python_tools/aoc_utils.py
2024-12-01 15:03:28 -05:00

9 lines
104 B
Python

def file2list(filepath):
f = open(filepath, 'r')
return [x.strip() for x in f.readlines()]