Sort Integers
Problem
Given an integer array, sort it in ascending order. Use selection sort, bubble sort, insertion sort or any O(n2)
algorithm.
Example
Given [3, 2, 1, 4, 5]
, return [1, 2, 3, 4, 5]
.
Given an integer array, sort it in ascending order. Use selection sort, bubble sort, insertion sort or any O(n2)
algorithm.
Given [3, 2, 1, 4, 5]
, return [1, 2, 3, 4, 5]
.