Skip to content

Instantly share code, notes, and snippets.

@PaperDevil
Created February 2, 2020 19:32
Show Gist options
  • Save PaperDevil/aad5960a1df7e3b67de2142db9c98c36 to your computer and use it in GitHub Desktop.
Save PaperDevil/aad5960a1df7e3b67de2142db9c98c36 to your computer and use it in GitHub Desktop.
Алгоритм сортировки выбором
def selection_sort(area):
sorted = []
for i in range(len(area)):
minimum = area.index(min(area))
sorted.append(area.pop(minimum))
return sorted
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment