Input the length of Array(Less than 21)

INPUT THE ELEMENTS SEPARATED WITH A SPACE


INSTRUCTIONS



Selection Sort

Selection sort is a famous sorting Algorithm.
As depicted by it's name.
It selects the smallest or largest element for the particular position

Worst - case Complexity : O(n2)
Average - case Complexity : O(n2)
Best - case Complexity : O(n2)