Update 4_Silver_BinSearch.md

This commit is contained in:
nchn27 2020-06-05 19:05:32 -04:00 committed by GitHub
parent 6972db2079
commit 6053570abd
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -23,7 +23,7 @@ Find an element in a sorted array in O(log N) time.
- [USACO Silver Counting Haybales](http://www.usaco.org/index.php?page=viewproblem2&cpid=666)
## Binary Searching on the Answer
Oftentimes used when you need to find the "minimum" or "maximum" of some quantity that satisfies a property.
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)
### Problems