We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 00b0301 commit 57a26e6Copy full SHA for 57a26e6
src/main/java/com/thealgorithms/datastructures/hashmap/hashing/GenericHashMapUsingArray.java
@@ -92,7 +92,6 @@ private int hashFunction(K key) {
92
* Rehashes the map by doubling the number of buckets and re-inserting all entries.
93
*/
94
private void reHash() {
95
- System.out.println("Rehashing!");
96
LinkedList<Node>[] oldBuckets = buckets;
97
initBuckets(oldBuckets.length * 2);
98
this.size = 0;
0 commit comments