mirror of
https://hub.njuu.cf/TheAlgorithms/Python.git
synced 2023-10-11 13:06:12 +08:00
parent
a7133eca13
commit
8c23cc5117
@ -11,7 +11,7 @@ python selection_sort.py
|
|||||||
"""
|
"""
|
||||||
|
|
||||||
|
|
||||||
def selection_sort(collection):
|
def selection_sort(collection: list[int]) -> list[int]:
|
||||||
"""Pure implementation of the selection sort algorithm in Python
|
"""Pure implementation of the selection sort algorithm in Python
|
||||||
:param collection: some mutable ordered collection with heterogeneous
|
:param collection: some mutable ordered collection with heterogeneous
|
||||||
comparable items inside
|
comparable items inside
|
||||||
|
Loading…
Reference in New Issue
Block a user