``` ```import java.util.*; public class Solution { public boolean IsPopOrder(int [] pushA,int [] popA) { Stack<Integer> stack1 = new Stack<>(); Stack<Integer> stack2 = new Stack<>(); for(int i=popA.length-1;i>=0;i--){ stack2.push(popA[i]); } stac...