use public class HashMap

This commit is contained in:
Ray S
2020-08-05 17:22:37 -04:00
committed by GitHub
parent 697d25b47e
commit bc7e3fd8ba

View File

@ -1,6 +1,6 @@
package DataStructures.HashMap.Hashing;
class HashMap {
public class HashMap {
private int hsize;
private LinkedList[] buckets;
@ -145,4 +145,4 @@ class HashMap {
this.next = next;
}
}
}
}