bisect-right-for-strict-greater-than

Status: IN

`bisect_right` (not `bisect_left`) is required when searching for the first element strictly greater than a target in a sorted array; `bisect_left` would incorrectly return the target itself when present.

Source: entries/2026/06/06/find-smallest-letter-greater-than-target-solution.md

JSON