Leetcode #153 Find Minimum in Rotated Sorted Array
This Problem we are trying to find mininum value from Rotated Sorted Array. For example, if there is an array [0, 1, 2, 3, 4, 5, 6, 7] that is already sorted it gets rotated by random number n. Case A If the array is [4, 5, 6, 7, 0, 1, 2, 3] it rotated 4 times. What we need are mid point, most left point, and most right point. 1. In this case mid point become 7 and we knows that the mid point is..