Search `target` in sorted ascending `nums`. Return index or `-1`. Variant **#60**.
Example 1
Input: nums = [60,62,64,66,68,70,72,74], target = 68
Output: 4
Constraints
Acceptance: 57% · Topics: binary-search, array
← All practice problems