From 876c0df16c1119a50a57efe8fb70e8f158f24539 Mon Sep 17 00:00:00 2001 From: Francesco Date: Thu, 5 Dec 2024 22:12:58 +0100 Subject: [PATCH] Test format --- src/aoc/solutions/02.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/aoc/solutions/02.py b/src/aoc/solutions/02.py index 42a6444..c05f9e6 100644 --- a/src/aoc/solutions/02.py +++ b/src/aoc/solutions/02.py @@ -4,7 +4,7 @@ def check(line): - def f(line): + def f(line): for i in range(1, len(line)): if not (1 <= (line[i] - line[i - 1]) <= 3): return False