153. Find Minimum in Rotated Sorted Array
# Medium
Same as #33.
Solution 1:
find the pivot as #33
consider 2 situations: this is an ascending list or rotated list
consider edge case: 1 element
Solution 2:
find the pivot as #33.
Last updated
Was this helpful?