Update insertion_sort.md

This commit is contained in:
Rohit Tanwar
2018-02-20 16:36:12 +05:30
committed by GitHub
parent dc76f610f8
commit 8b53232db6

View File

@ -1,6 +1,4 @@
## insertion_sort
### Insertion Sort Algorithm
### insertion_sort
On a very basic level, an insertion sort algorithm contains the logic of shifting around and inserting elements in order to sort an unordered list of any size. The way that it goes about inserting elements, however, is what makes insertion sort so very interesting!