diff --git a/snippets/insertion_sort.md b/snippets/insertion_sort.md index 6c6625272..f00e41ce9 100644 --- a/snippets/insertion_sort.md +++ b/snippets/insertion_sort.md @@ -1,4 +1,6 @@ -### insertion_sort +## insertion_sort + +### Insertion Sort Algorithm 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!