diff --git a/snippets/insertionsort.md b/snippets/insertionsort.md index ce5a11ec1..a18ecae40 100644 --- a/snippets/insertionsort.md +++ b/snippets/insertionsort.md @@ -1,5 +1,8 @@ ## 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! + + ## Implementation ```python arr = [] # list to sort