From 555f7c7b65353eda2de773896d378fe22a92b111 Mon Sep 17 00:00:00 2001 From: Daniel Weber Date: Fri, 6 Dec 2024 22:55:09 -0500 Subject: [PATCH] added a new function to aoc --- python_tools/aoc_utils.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/python_tools/aoc_utils.py b/python_tools/aoc_utils.py index d112e52..8641da5 100644 --- a/python_tools/aoc_utils.py +++ b/python_tools/aoc_utils.py @@ -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()]