LeetCode 솔루션 분류
[7/25] 34. Find First and Last Position of Element in Sorted Array
본문
Medium
11860315Add to ListShareGiven an array of integers nums
sorted in non-decreasing order, find the starting and ending position of a given target
value.
If target
is not found in the array, return [-1, -1]
.
You must write an algorithm with O(log n)
runtime complexity.
Example 1:
Input: nums = [5,7,7,8,8,10], target = 8 Output: [3,4]
Example 2:
Input: nums = [5,7,7,8,8,10], target = 6 Output: [-1,-1]
Example 3:
Input: nums = [], target = 0 Output: [-1,-1]
Constraints:
0 <= nums.length <= 105
-109 <= nums[i] <= 109
nums
is a non-decreasing array.-109 <= target <= 109
Accepted
1,181,725
Submissions
2,917,893
태그
#Facebook, #Amazon, #Microsoft, #Google, #LinkedIn, #Uber, #Apple, #Bloomberg, #Yahoo, #Adobe, #Qualtrics, #Intuit, #SAP
관련자료
-
링크
댓글 1
학부유학생님의 댓글
- 익명
- 작성일
Runtime: 136 ms, faster than 44.59% of Python3 online submissions for Find First and Last Position of Element in Sorted Array.
Memory Usage: 15.5 MB, less than 10.25% of Python3 online submissions for Find First and Last Position of Element in Sorted Array.
Memory Usage: 15.5 MB, less than 10.25% of Python3 online submissions for Find First and Last Position of Element in Sorted Array.
class Solution:
def searchRange(self, nums: List[int], target: int) -> List[int]:
l, r = 0, len(nums)-1
while l<=r:
mid = (l+r)//2
if nums[mid] < target:
l = mid + 1
else:
r = mid - 1
left = l
l, r = 0, len(nums)-1
while l <= r:
mid = (l+r)//2
if nums[mid] > target:
r = mid - 1
else:
l = mid + 1
return [left, r] if left<=r else [-1,-1]