A@averycodesLast analyzed Sep 2, 2025
Binary Search
Binary search implementation over sorted arrays.
O(log n)
Medium confidenceTypeScript
Algorithms
Search
Authored by Avery Johnson*Jul 4, 2025
Code
Loading snippet preview...
Complexity explanation
Loop or recursion dividing work roughly in half each step.
Signals detected
- Nested loops depth 2
- Divide-and-conquer pattern