added a new function to aoc

This commit is contained in:
Daniel Weber 2024-12-06 22:55:09 -05:00
parent 437cdbb98b
commit 555f7c7b65

View File

@ -4,5 +4,8 @@ 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()]