Sorting
Challenge Difficulty: Easy | Estimated completion time: ~10 minutes
Implement a algorithm, or create a algorithm that is able to sort a array (smallest to largest).
Examples
[3, 2, 1] -> [1, 2, 3]
[5, 7, 6] -> [5, 6, 7]Solution
Python
Output