=================================== Maxsort - Selection Sort in reverse =================================== Question -------- Demonstrate selection sort, but sort using the max value. Solution -------- .. literalinclude:: ../../languages/python/algorithm_maxsort.py :language: python :tab-width: 4 .. runcode:: ../../languages/python/algorithm_maxsort.py :language: python :codesite: ideone Explanation =========== .. seealso:: * :python-suggest-improve:`algorithm_maxsort.py` * :python-better-explain:`algorithm_maxsort.rst`