Selection Sort

00:00
EasySortingArrayComparison Sort
TCSWiproInfosys

Sort array using selection sort: repeatedly find the minimum element in the unsorted portion and place it at the beginning.

Examples

Input → [64,25,12,22,11]
Output → [11,12,22,25,64]
Input → [5,1,4,2,8]
Output → [1,2,4,5,8]
Input → [1]
Output → [1]