34. Find First and Last Position of Element in Sorted Array
Description
Input: nums = [5,7,7,8,8,10], target = 8
Output: [3,4]Input: nums = [5,7,7,8,8,10], target = 6
Output: [-1,-1]Input: nums = [], target = 0
Output: [-1,-1]Tags
Solution
Complexity
Code
Last updated