Update insertionsort.md

This commit is contained in:
Meet Zaveri
2018-02-20 15:05:38 +05:30
committed by GitHub
parent 4f4bce9c2e
commit a10e639139

View File

@ -1,5 +1,8 @@
## Insertion Sort ## 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 ## Implementation
```python ```python
arr = [] # list to sort arr = [] # list to sort