Progress0 / 20

Current question: 7 of 20

Find Minimum in Rotated Sorted Array
Binary SearchMedium
Amazon
Microsoft
Google
Mark as Solved

Problem Description

Suppose an array of length n sorted in ascending order is rotated between 1 and n times. Given the sorted rotated array nums of unique elements, return the minimum element of this array.

Code Editor
Solution
Related Questions
    Video Solutions

    Find Minimum in Rotated Sorted Array - Binary Search Approach

    Discussion
    Alice2 hours ago

    Great question! I found the two-pointer approach helpful.

    Bob1 hour ago

    I'm stuck on the edge case. Any hints?