Challenge 3: Sort an Array
Given an array of numbers, sort it in ascending order.
We'll cover the following...
Problem Statement
Implement a function that sorts the input array testVariable
in-place.
In-place means that no extra array or any other data structure is used in ...