forked from HuberTRoy/leetCode
-
Notifications
You must be signed in to change notification settings - Fork 0
/
FindMinimumInRotatedSortedArray.py
58 lines (39 loc) · 1.13 KB
/
FindMinimumInRotatedSortedArray.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
"""
Suppose an array sorted in ascending order is rotated at some pivot unknown to you beforehand.
(i.e., [0,1,2,4,5,6,7] might become [4,5,6,7,0,1,2]).
Find the minimum element.
You may assume no duplicate exists in the array.
Example 1:
Input: [3,4,5,1,2]
Output: 1
Example 2:
Input: [4,5,6,7,0,1,2]
Output: 0
找旋转过的排序数组中最小的数。
有旋转则旋转点最小,无则 0 最小。
beat: 100% 20ms
48% 24ms
测试地址:
https://leetcode.com/problems/find-minimum-in-rotated-sorted-array/description/
"""
class Solution(object):
def find_rotate(self, nums):
target = nums[0]
lo = 1
hi = len(nums)
while lo < hi:
mid = (lo + hi) // 2
if nums[mid] > target:
lo = mid + 1
else:
hi = mid
return lo
def findMin(self, nums):
"""
:type nums: List[int]
:rtype: int
"""
rotate = self.find_rotate(nums)
if rotate == len(nums):
return nums[0]
return nums[rotate]