-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfind-minimum-in-rotated-sorted-array.py
executable file
·61 lines (46 loc) · 1.34 KB
/
find-minimum-in-rotated-sorted-array.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
59
60
61
# -*- coding: utf-8 -*-
"""
Created on Sat Jul 18 18:58:36 2020
@author: johnoyegbite
"""
# SOLVED!
"""
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
"""
class Solution:
def findMin(self, nums) -> int: # O(log n)
"""
if mid greater than start and less than end // go left
if mid is less than start // go left
else (=> mid greater than or equal to start) // go right
OR
IF mid less than end // go left
else // go right
type nums: List[int]
rtype: int
"""
start = 0
end = len(nums) - 1
while start < end:
mid = (start + end) // 2
if ((nums[mid] > nums[start] and nums[mid] < nums[end])
or
(nums[mid] <= nums[start] and nums[mid] <= nums[end])):
end = mid
else:
start = mid + 1
return nums[start]
if __name__ == "__main__":
s = Solution()
nums = [3, 4, 5, 1, 2]
print(s.findMin(nums))