:type nums: List[int] :rtype: int
(self, nums)
| 45 | return lo |
| 46 | |
| 47 | def findMin(self, nums): |
| 48 | """ |
| 49 | :type nums: List[int] |
| 50 | :rtype: int |
| 51 | """ |
| 52 | |
| 53 | rotate = self.find_rotate(nums) |
| 54 | |
| 55 | if rotate == len(nums): |
| 56 | return nums[0] |
| 57 | |
| 58 | return nums[rotate] |
nothing calls this directly
no test coverage detected