From 1c53f5c4fec71308f7ed4317d82ea25d9b1ffc4f Mon Sep 17 00:00:00 2001 From: Shantanu Tripathi Date: Fri, 12 Oct 2018 12:33:23 +0530 Subject: [PATCH] Added a reference video for Insertion Sort Added a reference to the video of Insertion sort of My code school which is probably the best video for a beginner to understand. --- .../algorithms/sorting-algorithms/insertion-sort/index.md | 1 + 1 file changed, 1 insertion(+) diff --git a/client/src/pages/guide/english/algorithms/sorting-algorithms/insertion-sort/index.md b/client/src/pages/guide/english/algorithms/sorting-algorithms/insertion-sort/index.md index a5d8364761..bc6317e1b4 100644 --- a/client/src/pages/guide/english/algorithms/sorting-algorithms/insertion-sort/index.md +++ b/client/src/pages/guide/english/algorithms/sorting-algorithms/insertion-sort/index.md @@ -179,3 +179,4 @@ void insertionSort(int arr[], int n) - [CS50 - YouTube](https://youtu.be/TwGb6ohsvUU) - [SortInsertion - GeeksforGeeks, YouTube](https://www.youtube.com/watch?v=wObxd4Kx8sE) - [Insertion Sort Visualization](https://www.hackerearth.com/practice/algorithms/sorting/insertion-sort/visualize/) +- [Insertion Sort - MyCodeSchool](https://www.youtube.com/watch?v=i-SKeOcBwko)