Update 4_Silver_BinSearch.md

This commit is contained in:
Darren Yao 2020-06-07 01:44:12 -07:00 committed by GitHub
parent bb310d1c34
commit 98dc37d335
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -32,7 +32,7 @@ Binary search can be used on monotonic functions for a logarithmic runtime.
Oftentimes used when you need to find the minimum or maximum of some quantity such that it satisfies some property.
### Tutorial
- [CPH Section 12.1](https://www.overleaf.com/project/5e73f65cde1d010001224d8a)
- [Introduction to USACO Section 12.1](https://www.overleaf.com/project/5e73f65cde1d010001224d8a)
### Problems
- [USACO Silver Cownvention](http://www.usaco.org/index.php?page=viewproblem2&cpid=858)
- [USACO Silver Cow Dance](http://www.usaco.org/index.php?page=viewproblem2&cpid=690)