thisisagan

Results 2 issues of thisisagan

def select_sort(lst): if not lst: return [] for i in range(len(lst) - 1): smallest = i for j in range(i, len(lst)): if lst[j] < lst[smallest]: smallest = j lst[i], lst[smallest]...