Find Minimum in Rotated Sorted Array

Binary Search
Medium
Amazon
Microsoft
Google

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.

Solve on LeetCode

Video Solutions

Find Minimum in Rotated Sorted Array - Binary Search Approach