Skip to content

Commit

Permalink
Test format
Browse files Browse the repository at this point in the history
  • Loading branch information
tomfran committed Dec 5, 2024
1 parent 2078473 commit 876c0df
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/aoc/solutions/02.py
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 876c0df

Please sign in to comment.