Problem Statement
Sort an array of integers using Selection Sort.
Approach
Divide the array into a sorted and an unsorted region. In each pass, find the minimum element in the unsorted region and swap it with the first element of the unsorted region.
Time & Space Complexity
Time complexity is O(n^2). Space complexity is O(1).
