import java.util.ArrayList; public class Solution { public int minNumberInRotateArray(int [] array) { int l, r; l = 0; r = array.length - 1; ...