package jcf_set.exercise;

public class Insiemistica {
	
	public static void main(String[] main) {
		
		// Insiemi di test
		Integer[] aArray = {1, -2, 3, -4, 3};
		Integer[] bArray = {1, 5, -6, -4, 5};
		
		// Input come HashSet (Ordine non garantito)
		Set<Integer> aHashSet = new HashSet<Integer>(aArray);
		
	}
	
}
