summaryrefslogtreecommitdiffstats
path: root/1.py
diff options
context:
space:
mode:
Diffstat (limited to '1.py')
-rw-r--r--1.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/1.py b/1.py
index 2cc64a1..afd445d 100644
--- a/1.py
+++ b/1.py
@@ -1,5 +1,5 @@
-from utils import sliding_window
+from utils import open_day, sliding_window
-inp: list[int] = list(map(int, open('1.in')))
+inp: list[int] = list(map(int, open_day(1)))
print(sum(s[0] < s[1] for s in sliding_window(inp, 2)))
print(sum(s[0] < s[3] for s in sliding_window(inp, 4)))