From a10e639139068f23651dc8fed8390c775c62a773 Mon Sep 17 00:00:00 2001 From: Meet Zaveri Date: Tue, 20 Feb 2018 15:05:38 +0530 Subject: [PATCH] Update insertionsort.md --- snippets/insertionsort.md | 3 +++ 1 file changed, 3 insertions(+) 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