We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4f488c6 commit 0cf671aCopy full SHA for 0cf671a
examples/chapter07/02-HashTable.js
@@ -2,6 +2,12 @@ const { HashTable } = PacktDataStructuresAlgorithms;
2
3
const hash = new HashTable();
4
5
+console.log(hash.hashCode('Gandalf') + ' - Gandalf');
6
+console.log(hash.hashCode('John') + ' - John');
7
+console.log(hash.hashCode('Tyrion') + ' - Tyrion');
8
+
9
+console.log(' ');
10
11
console.log(hash.hashCode('Ygritte') + ' - Ygritte');
12
console.log(hash.hashCode('Jonathan') + ' - Jonathan');
13
console.log(hash.hashCode('Jamie') + ' - Jamie');
0 commit comments