diff options
Diffstat (limited to '2015')
-rw-r--r-- | 2015/21/puzzles.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/2015/21/puzzles.py b/2015/21/puzzles.py index e43829b..103a2eb 100644 --- a/2015/21/puzzles.py +++ b/2015/21/puzzles.py @@ -56,7 +56,7 @@ def main() -> None: b_armor = int(b_armor.strip().split(": ")[1]) # START PART 1 - min_cost = 999999999999999999999999999999999999999999999999999999999 + min_cost = float('inf') # END PART 1 START PART 2 max_cost = 0 # END PART 2 |