We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 44c158a commit 62c6b71Copy full SHA for 62c6b71
src/_DataStructures_/HashTable/index.js
@@ -8,7 +8,7 @@ class HashTable {
8
// and help to resize when the table is half filled
9
this.size = 0;
10
// threshold (let it be 70%)
11
- this.threshold = 0.8;
+ this.threshold = 0.7;
12
// the main bucket
13
this.bucket = new Array(this.slot);
14
0 commit comments