Search `target` in sorted ascending `nums`. Return index or `-1`. Variant **#33**.
Example 1
Input: nums = [33,35,37,39,41,43,45,47,49,51,53], target = 33
Output: 0
Constraints
Acceptance: 78% · Topics: binary-search, array
← All practice problems