06 Mar 2021 - Hadron DaVinci
Sort the given array with Selection Sort:
A = [5, 2, 4, 6, 1, 3] selection_sort(A) assert(A) == [1, 2, 3, 4, 5, 6]
Time Complexity: N^2 Space Complexity: 1 Unstable
method1.py