Input: SORTED array, target
Output: element_index or -1 if is not present in array
Complexity: $O(logn)$
https://skine.ru/articles/532472/
Algorithm:
<aside> ⚙️ int left = 0; int right = n-1; target ? $a_{mid}$: