Skip to content

Latest commit

 

History

History
33 lines (19 loc) · 558 Bytes

File metadata and controls

33 lines (19 loc) · 558 Bytes

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`