import java.util.*; public class Solution { public ArrayList<Integer> maxInWindows(int [] num, int size) { LinkedList<Integer> queue = new LinkedList<>(); ArrayList<Integer> res = new ArrayList<>(); if(size<=0||size>num.length) return res; for(int i = 0;i<num.l...