Skip to content

Commit

Permalink
removed unnecessary print
Browse files Browse the repository at this point in the history
  • Loading branch information
Pizhlo committed Apr 6, 2024
1 parent b5812a9 commit c5d5309
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion stepik/selection_sort/selection_sort.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,6 @@ def selection_sort(arr: list) -> list:

if i != min_idx:
arr[i], arr[min_idx] = arr[min_idx], arr[i]
print(arr)

return arr

Expand Down

0 comments on commit c5d5309

Please sign in to comment.