Insertion Sort Vs Selection Sort
, 3], already in place. - Iteration 3: Find minimum (3) from [4, 6, 5, 3], swap with 4: [1, 2, 3, 6, 5, 4] - Iteration 4: Find minimum (4) from [6, 5, 4], swap with 6: [1, 2, 3, 4, 5, 6] - Iteration 5: Array is sorted. Time and Space Complexit