Find Minimum in Rotated Sorted Array
#153
Medium
Binary Search
O(log n)
O(1)
Amazon
Microsoft
Facebook
Problem Description
Suppose an array of length n sorted in ascending order is rotated. Find the minimum element.
Suppose an array of length n sorted in ascending order is rotated. Find the minimum element.