selection sort epython code example
Example: selection sort python
def selection_sort(lst):
empty_lst = []
x = len(lst) - 1
while x>=0:
for i in range(len(lst)):
if lst[i] <= lst[0]:
lst[0],lst[i] = lst[i],lst[0]
# this part compares the number in first index and numbers after the first index.
g = lst.pop(0)
empty_lst.append(g)
x -= 1
return empty_lst
print(selection_sort([2,3,4,2,1,1,1,2]))