From dc58a0fa4304c6b0067e36bc75464060291c2436 Mon Sep 17 00:00:00 2001 From: Tobias Radloff Date: Tue, 2 Dec 2025 10:17:17 +0100 Subject: [PATCH] fixed a typo --- day01.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/day01.py b/day01.py index a2a817e..83b125d 100644 --- a/day01.py +++ b/day01.py @@ -1,6 +1,6 @@ #!/usr/bin/env python -f = open("day1input.txt", "r") +f = open("day01input.txt", "r") a = f.readlines() b = list(map(str.strip, a)) c = list(map(lambda x: -int(x[1:]) if x[0] == "L" else int(x[1:]), b))