Sort Me In Place

Write a function called sort2() that will receive a list and return the same list arranged in ascending order (smallest to largest).

Examples:

Also use the randlist() function you wrote in a previous assignment to test your function.

You may not use any built-in sort() function. You may not use a second list.




©2017 Graham Mitchell