Skip to content

Commit 8b7806a

Browse files
committed
indent error
1 parent b56f2c5 commit 8b7806a

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

find-minimum-in-rotated-sorted-array/devyulbae.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,4 +20,5 @@ def findMin(self, nums: List[int]) -> int:
2020
left = mid + 1
2121
else:
2222
right = mid - 1
23-
return nums[0]
23+
return nums[0]
24+

0 commit comments

Comments
 (0)