Skip to content

Commit 0403784

Browse files
committed
Search for a range solution
1 parent eb00f9c commit 0403784

File tree

1 file changed

+28
-0
lines changed

1 file changed

+28
-0
lines changed

34.search_for_a_range.py

+28
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
class Solution(object):
2+
def searchRange(self, nums, target):
3+
"""
4+
:type nums: List[int]
5+
:type target: int
6+
:rtype: List[int]
7+
"""
8+
length = len(nums)
9+
if length == 0:
10+
return [-1, -1]
11+
min = 0
12+
max = length - 1
13+
while min <= max:
14+
pos = (min + max) / 2
15+
if nums[pos] > target:
16+
max = pos - 1
17+
elif nums[pos] < target:
18+
min = pos + 1
19+
else:
20+
# when nums[pos] == target
21+
# find the min and max
22+
for i in range(min, max + 1):
23+
if nums[i] == target:
24+
if min < i and nums[min] != nums[i]:
25+
min = i
26+
max = i
27+
return [min, max]
28+
return [-1, -1]

0 commit comments

Comments
 (0)