Write the python function selection_sort_descend_trace() that takes an integer list and sorts the list into descending order. The function should use nested loops and output the list after each iteration of the outer loop, thus outputting the list N-1 times (where N is the size).
Complete __main__ to read in a list of integers, and then call selection_sort_descend_trace() to sort the list.
Ex: If the input is:
20 10 30 40
then the output is:
40 10 30 20
40 30 10 20
40 30 20 10
I have a whitespace error. I need to have a space after the last index position prints but I can't seem to get the space in without either adding a new line. what can i do to fix this?
Already registered? Login
Not Account? Sign up
Enter your email address to reset your password
Back to Login? Click here