summaryrefslogtreecommitdiffstats
path: root/2.py
diff options
context:
space:
mode:
authorTomasz Kramkowski <tk@the-tk.com>2021-12-03 16:56:16 +0000
committerTomasz Kramkowski <tk@the-tk.com>2021-12-03 16:56:54 +0000
commitd75a9d510ced0a29ad2fe7ebc247dc7b0766320c (patch)
tree3bf55422bf79ce41ac62e20da7906321c2ec8992 /2.py
parentb5d1f2d79bb61afd9b03621282b7bff5f29a75f1 (diff)
downloadaoc2021-d75a9d510ced0a29ad2fe7ebc247dc7b0766320c.tar.gz
aoc2021-d75a9d510ced0a29ad2fe7ebc247dc7b0766320c.tar.xz
aoc2021-d75a9d510ced0a29ad2fe7ebc247dc7b0766320c.zip
Implement open_day utility function
Diffstat (limited to '2.py')
-rw-r--r--2.py4
1 files changed, 3 insertions, 1 deletions
diff --git a/2.py b/2.py
index 618cd86..dd33814 100644
--- a/2.py
+++ b/2.py
@@ -1,3 +1,5 @@
+from utils import open_day
+
Command = tuple[str, int]
def part1(commands: list[Command]) -> int:
@@ -23,6 +25,6 @@ def part2(commands: list[Command]) -> int:
depth += aim * X
return pos * depth
-commands: list[Command] = [(c, int(q)) for c, q in (l.split() for l in open('2.in'))]
+commands: list[Command] = [(c, int(q)) for c, q in (l.split() for l in open_day(2))]
print(part1(commands))
print(part2(commands))