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.
This commit is contained in:
Shantanu Tripathi
2018-10-12 12:49:04 +05:30
committed by Kristofer Koishigawa
parent 3f512e0af4
commit 667f900797

View File

@ -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)