advent_of_code/python_tools/aoc_utils.py
2024-12-06 22:55:09 -05:00

12 lines
216 B
Python

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