Splunk interview question

Direct question from leetcode, return the smallest element in a rotated sorted array.

Interview Answer

Anonymous

Feb 14, 2018

Used binary search to find the minimum element.

2