package Lect29Library; import java.util.*; public class SetExample { public Iterator allStudents(String[] studentListOne, String[] studentListTwo) { // HashSet will not order the elements HashSet set = new HashSet(); // TreeSet will order the elements // TreeSet set = new TreeSet(); for (int i=0; i