From 667f9007973aaf0e64a822e9cfdabacdebb31dd1 Mon Sep 17 00:00:00 2001 From: Shantanu Tripathi Date: Fri, 12 Oct 2018 12:49:04 +0530 Subject: [PATCH] Added a good reference video for binary search Added a reference to a very good playlist of videos on binary search which belongs to MyCodeSchool. This playlist would be very helpful fro beginners to understand Binary Search. --- .../english/algorithms/search-algorithms/binary-search/index.md | 1 + 1 file changed, 1 insertion(+) diff --git a/client/src/pages/guide/english/algorithms/search-algorithms/binary-search/index.md b/client/src/pages/guide/english/algorithms/search-algorithms/binary-search/index.md index b3c5e5da37..709678b6f2 100644 --- a/client/src/pages/guide/english/algorithms/search-algorithms/binary-search/index.md +++ b/client/src/pages/guide/english/algorithms/search-algorithms/binary-search/index.md @@ -308,3 +308,4 @@ func binarySearch(for number: Int, in numbers: [Int]) -> Int? { ### More Information * [Binary search (YouTube video)](https://youtu.be/P3YID7liBug) * [Binary Search - CS50](https://www.youtube.com/watch?v=5xlIPT1FRcA) +* [Binary Search - MyCodeSchool](https://www.youtube.com/watch?v=j5uXyPJ0Pew&list=PL2_aWCzGMAwL3ldWlrii6YeLszojgH77j)