Mingze Li

Results 1 issues of Mingze Li

I think the solution may have issues, so I attached my solution. `def selection_sort(arr): size = len(arr) for i in range(size-1): min_index = i for j in range(min_index+1, size): if...