Skip to content

Commit

Permalink
[2024/11] for p2, continue from p1 end state rather than starting over
Browse files Browse the repository at this point in the history
  • Loading branch information
StarlitGhost committed Dec 12, 2024
1 parent 67d82aa commit 8d1d6a2
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion 2024/11/script.py
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ def main():
stones = blink_n_times(start_stones, 25)
print(f"p1: {sum(stones.values())}")

stones = blink_n_times(start_stones, 75)
stones = blink_n_times(stones, 50)
print(f"p2: {sum(stones.values())}")


Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ My solutions to the yearly Advents of Code

<!-- AOC TILES BEGIN -->
<h1 align="center">
Advent of Code - 183/472
Advent of Code - 183/474
</h1>
<h1 align="center">
2024 - 22 ⭐ - Python
Expand Down

0 comments on commit 8d1d6a2

Please sign in to comment.