Concept Flow - Binary Search on Answer Technique
Set low and high bounds for answer
Calculate mid = (low + high) / 2
Check if mid is a valid answer
Update high = mid
Repeat until low >= high
Return low as answer
This flow shows how we guess an answer between low and high, check if it works, then narrow the range until we find the best answer.