Skip to content

Latest commit

 

History

History
11 lines (8 loc) · 185 Bytes

binary_search.md

File metadata and controls

11 lines (8 loc) · 185 Bytes

Binary Search

pseudo code

while l <= r if mid < target l = mid (+1 if needed) else mid > target r = mid (-1 if needed) else mid == target