Qipccc

Results 1 issues of Qipccc

在《剑指offer》书中提到的数组为 [1,0,1,1,1] 这种情况时,这里程序输出为1是不正确的,可以改为: ```python class Solution: def minNumberInRotateArray(self, rotateArray): # write code here if len(rotateArray) == 0: return 0 front = 0 rear = len(rotateArray) - 1 minVal = rotateArray[0]...