// Zorah Fung, CSE 143 // Uses our HashSet implementation. Run in jGRASP debugger // to see it at work. public class HashDemo { public static void main(String[] args) { Set set = new HashSet(8); // change size to see different // hashing set.add("Zorah"); set.add("Sean"); set.add("Autumn"); set.add("Irving"); set.add("John"); set.add("Jeff"); set.add("Sean"); set.add("Radu"); set.add("Stephanie"); set.add("Radu"); set.add("Ayaz"); } }