progress update

This commit is contained in:
Artem Sergeev 2022-12-05 19:01:06 +02:00
parent 8e4f4291b1
commit e75663370c
1 changed files with 5 additions and 5 deletions

View File

@ -723,12 +723,12 @@ if you can identify the runtime complexity of different algorithms. It's a super
## More Knowledge
- ### Binary search
- [ ] [Binary Search (video)](https://www.youtube.com/watch?v=D5SrAga1pno)
- [ ] [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)
- [x] [Binary Search (video)](https://www.youtube.com/watch?v=D5SrAga1pno)
- [x] [Binary Search (video)](https://www.khanacademy.org/computing/computer-science/algorithms/binary-search/a/binary-search)
- [x] [detail](https://www.topcoder.com/thrive/articles/Binary%20Search)
- [x] [blueprint](https://leetcode.com/discuss/general-discussion/786126/python-powerful-ultimate-binary-search-template-solved-many-problems)
- [ ] [[Review] Binary search in 4 minutes (video)](https://youtu.be/fDKIpRe8GW4)
- [ ] Implement:
- [x] Implement:
- binary search (on sorted array of integers)
- binary search using recursion