We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b56f2c5 commit 8b7806aCopy full SHA for 8b7806a
find-minimum-in-rotated-sorted-array/devyulbae.py
@@ -20,4 +20,5 @@ def findMin(self, nums: List[int]) -> int:
20
left = mid + 1
21
else:
22
right = mid - 1
23
- return nums[0]
+ return nums[0]
24
+
0 commit comments