Code
Hub
Workspaces
Following
Trending
Connect
MCP
copy
Create free account
hub
/
github.com/BeeBombshell/Python-DSA
/ selection_sort
Function
selection_sort
Sorting Algorithms/selection_sort.py:1–1 ·
view source on GitHub ↗
(list1)
Source
from the content-addressed store, hash-verified
1
def
selection_sort(list1):
2
for
i in range(0, len(list1) - 1):
3
smallest = i
4
for
j in range(i + 1, len(list1)):
Callers
nothing calls this directly
Calls
no outgoing calls
Tested by
no test coverage detected