//Data Structures and Algorithms //Tod Antilla public class Algorithm3Driver{ public static void main(String argv[]){ int[] A = new int[Integer.parseInt(argv[0])]; testData(A, Boolean.valueOf(argv[1]).booleanValue()); } static void testData(int[] test, boolean answer){ if(answer){ for(int i=0; i