:type nums: List[int] :rtype: int
(self, nums)
| 54 | return lo |
| 55 | |
| 56 | def findMin(self, nums): |
| 57 | """ |
| 58 | :type nums: List[int] |
| 59 | :rtype: int |
| 60 | """ |
| 61 | |
| 62 | rotate = self.find_rotate(nums) |
| 63 | |
| 64 | if rotate == len(nums): |
| 65 | return nums[0] |
| 66 | |
| 67 | return nums[rotate] |
| 68 |
nothing calls this directly
no test coverage detected