Interview_DS_Algo
Interview_DS_Algo copied to clipboard
Small Optimization in the Written Binary Search .
Implementing proper binary search by replacing l++ with (mid + 1) and r-- with (mid - 1).