// 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 HashSetFinal(10); // change size to see different // results in the debugger // hashing set.add("Zorah"); set.add("Yuma"); set.add("Joey"); set.add("Kevin"); set.add("Zaha"); set.add("Hunter"); set.add("Britt"); set.add("Ryan"); set.add("Ayaz"); set.add("Miri"); set.add("Austin"); } }