File tree 2 files changed +7
-0
lines changed
2 files changed +7
-0
lines changed Original file line number Diff line number Diff line change @@ -92,6 +92,7 @@ Book link - first edition:
92
92
Book link - second edition:
93
93
- [ Packt] ( https://www.packtpub.com/web-development/learning-javascript-data-structures-and-algorithms-second-edition )
94
94
- [ Amazon] ( http://amzn.to/1TSkcA1 )
95
+ - [ Chinese version] ( http://www.ituring.com.cn/book/2029 )
95
96
- [ Brazilian Portuguese version] ( https://novatec.com.br/livros/estruturas-de-dados-algoritmos-em-javascript/ )
96
97
97
98
Book link - third edition:
Original file line number Diff line number Diff line change @@ -2,6 +2,12 @@ const { HashTable } = PacktDataStructuresAlgorithms;
2
2
3
3
const hash = new HashTable ( ) ;
4
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
+
5
11
console . log ( hash . hashCode ( 'Ygritte' ) + ' - Ygritte' ) ;
6
12
console . log ( hash . hashCode ( 'Jonathan' ) + ' - Jonathan' ) ;
7
13
console . log ( hash . hashCode ( 'Jamie' ) + ' - Jamie' ) ;
You can’t perform that action at this time.
0 commit comments