Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 0 additions & 1 deletion sorts/pigeon_sort.py
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,6 @@ def pigeon_sort(array):
if len(array) == 0:
return array

# Finds the minimum and maximum of the array.
_min, _max = min(array), max(array)

# Compute the variables
Expand Down