前后指针法 分析:旋转数组的特点是,左右两部分都为单调递增的数据 我们遍历数组 第一次遇到递减的情况 只需对比第一个数据与当前数据的大小 返回较小的一个即可 func minNumberInRotateArray(rotateArray []int) int { // write code here var res int if len(rotateArray) == 1 { return rotateArray[0] } pr...