advent_of_code/python_tools/aoc_utils.py

9 lines
104 B
Python
Raw Normal View History

2024-12-01 15:03:28 -05:00
def file2list(filepath):
f = open(filepath, 'r')
return [x.strip() for x in f.readlines()]