Sort Me

Write a function called sort() that will receive a list and return a new list containing the same values but 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 must move the values from one list to the other in sorted order.




©2017 Graham Mitchell