From d2fa7fad5f275384910b9a8f00ab60fc20123d91 Mon Sep 17 00:00:00 2001 From: Michael Sambol Date: Wed, 5 Oct 2022 19:00:26 -0700 Subject: [PATCH] Update link to binary search review --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 6f37774..e2527e9 100644 --- a/README.md +++ b/README.md @@ -728,7 +728,7 @@ if you can identify the runtime complexity of different algorithms. It's a super - [ ] [Binary Search (video)](https://www.khanacademy.org/computing/computer-science/algorithms/binary-search/a/binary-search) - [ ] [detail](https://www.topcoder.com/thrive/articles/Binary%20Search) - [ ] [blueprint](https://leetcode.com/discuss/general-discussion/786126/python-powerful-ultimate-binary-search-template-solved-many-problems) - - [ ] [[Review] Binary search in 3 minutes (video)](https://youtu.be/B25Gu5r0xUg) + - [ ] [[Review] Binary search in 4 minutes (video)](https://youtu.be/fDKIpRe8GW4) - [ ] Implement: - binary search (on sorted array of integers) - binary search using recursion