Splunk interview question

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

Interview Answer

Anonymous

14 Feb 2018

Used binary search to find the minimum element.

2