Implement the Selection Sort Algorithm Lab

Use print() to output the array each time it’s updated so you can see the changes.

  1. Your selection_sort should follow the selection sort algorithm, swapping the minimum value in unsorted part of the list with first the unsorted element.

What if the current number is also the lowest number? Should they swap?