added a new function to aoc
This commit is contained in:
parent
437cdbb98b
commit
555f7c7b65
@ -4,5 +4,8 @@ def file2list(filepath):
|
|||||||
f = open(filepath, 'r')
|
f = open(filepath, 'r')
|
||||||
return [x.strip() for x in f.readlines()]
|
return [x.strip() for x in f.readlines()]
|
||||||
|
|
||||||
|
def file2listoflists(filepath):
|
||||||
|
f = open(filepath, 'r')
|
||||||
|
return [list(x.strip()) for x in f.readlines()]
|
||||||
|
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user