374. Guess Number Higher or Lower


it's pretty much the same as 278. First Bad Version
Read more ⟶

704. Binary Search


on each iteration decrease search space in two times
Read more ⟶

74. Search a 2D Matrix


use binary search to find and imagine matrix as sorted array
Read more ⟶

844. Backspace String Compare


compare reversed string with `#` times skip
Read more ⟶