python-coding-interview
python-coding-interview copied to clipboard
Fix Binary Search description (Issue #15)Fix incorrect Binary Search explanation in Decrease and Conquer chapter
Corrected the Binary Search explanation in the Decrease and Conquer chapter.
- If nums[mid] < target → move right (l = mid + 1)
- If nums[mid] > target → move left (r = mid - 1)
Resolves #15