Skip to content

Commit

Permalink
tidy
Browse files Browse the repository at this point in the history
  • Loading branch information
Akuli committed Jan 5, 2025
1 parent 08ff58d commit 898b260
Showing 1 changed file with 0 additions and 13 deletions.
13 changes: 0 additions & 13 deletions examples/aoc2024/day25/part1.jou
Original file line number Diff line number Diff line change
Expand Up @@ -50,19 +50,6 @@ def main() -> int:
for il = 0; il < nlocks; il++:
for ik = 0; ik < nkeys; ik++:
if fits(keys[ik], locks[il]):
printf(
"key %d,%d,%d,%d,%d fits lock %d,%d,%d,%d,%d\n",
keys[ik][0],
keys[ik][1],
keys[ik][2],
keys[ik][3],
keys[ik][4],
locks[il][0],
locks[il][1],
locks[il][2],
locks[il][3],
locks[il][4],
)
result++

printf("%d\n", result) # Output: 3
Expand Down

0 comments on commit 898b260

Please sign in to comment.