search-insert-equivalent-to-bisect-left

Status: IN

`searchInsert(nums, target)` produces the same result as `bisect.bisect_left(nums, target)` for sorted distinct-integer lists — it is the canonical lower-bound binary search.

Source: entries/2026/06/06/search-insert-position-solution.md

JSON