51 Binary search template Easy Binary Search

Given a sorted array and a target value, return the index of the target or -1 if not found.

52 Find insert position Easy Binary Search

Given a sorted array and a target, return the index where the target would be inserted.

53 First and last occurrence Medium Binary Search

Given a sorted array with duplicates and a target, find the first and last index of the target.

54 Integer square root Easy Binary Search

Compute floor(sqrt(x)) without using math.sqrt.

55 Find peak element Medium Binary Search

Given an array where no two adjacent elements are equal, find any peak element.

56 Min in rotated sorted array Medium Binary Search

Given a rotated sorted array with unique elements, find the minimum element.