Skip to content

Latest commit

 

History

History
9 lines (5 loc) · 141 Bytes

readme.md

File metadata and controls

9 lines (5 loc) · 141 Bytes

Binary Search

Input Type: comparable, slice of values

v0 - Recursive by slicing

v1 - Loops

v2 - Copied from stdlib, different usage