import java.util.*; class IntSet10 { // Implementation of set of integers using array of booleans // Integers restricted to range 0 to MAX-1 // Uses constructive methods, including union and intersection private boolean[] array; public static final int MAX=100; public IntSet10() { array = new boolean[MAX]; } private IntSet10(boolean[] a) { array=a; } public IntSet10 delete(int n) { if(array[n]) { int i; boolean[] a = new boolean[MAX]; for(i=0;i