function minNumberInRotateArray(rotateArray) { // write code here var arr = rotateArray.sort(function(a,b){ return a-b }) ...