The Blind 75 Leetcode Series: Find Minimum in Rotated Sorted Array

Jonathan Chao
5 min readSep 26, 2022
Photo by Chris Ried on Unsplash

Today, we are working on 153. Find Minimum in Rotated Sorted Array

Suppose an array of length n sorted in ascending order is rotated between 1 and n times. For example, the array nums = [0,1,2,4,5,6,7] might become:

[4,5,6,7,0,1,2] if it was rotated 4 times.

[0,1,2,4,5,6,7] if it was rotated 7 times.

--

--

Jonathan Chao

I am a software developer who has been in this industry for close to a decade. I share my experience to people who are or want to get into the industry