Path: blob/master/source/python/algorithm_insertion.rst
1241 views
============== Insertion Sort ============== Question -------- Write a program to demonstrate Insertion Sort. Solution -------- .. literalinclude:: ../../languages/python/algorithm_insertion.py :language: python :tab-width: 4 .. runcode:: ../../languages/python/algorithm_insertion.py :language: python :codesite: ideone Explanation =========== .. seealso:: * :python-suggest-improve:`algorithm_insertion.py` * :python-better-explain:`algorithm_insertion.rst`