MCPcopy 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

1def selection_sort(list1):
2for i in range(0, len(list1) - 1):
3smallest = i
4for j in range(i + 1, len(list1)):

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected