python-coding-interview icon indicating copy to clipboard operation
python-coding-interview copied to clipboard

Fix Binary Search description (Issue #15)Fix incorrect Binary Search explanation in Decrease and Conquer chapter

Open mandakini-tech opened this issue 1 month ago • 0 comments

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

mandakini-tech avatar Nov 12 '25 16:11 mandakini-tech