Skip to content

Commit

Permalink
Update solve.py
Browse files Browse the repository at this point in the history
  • Loading branch information
ikostan committed Oct 24, 2024
1 parent 96ca374 commit d3f5c1a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion kyu_6/casino_chips/solve.py
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ def solve(arr: list) -> int:
:param arr:
:return:
"""
arr: list = sorted(arr)
arr = sorted(arr)

if arr[0] + arr[1] <= arr[2]:
return arr[0] + arr[1]
Expand Down

0 comments on commit d3f5c1a

Please sign in to comment.