File tree Expand file tree Collapse file tree 2 files changed +7
-0
lines changed Expand file tree Collapse file tree 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:
9292Book link - second edition:
9393 - [ Packt] ( https://www.packtpub.com/web-development/learning-javascript-data-structures-and-algorithms-second-edition )
9494 - [ Amazon] ( http://amzn.to/1TSkcA1 )
95+ - [ Chinese version] ( http://www.ituring.com.cn/book/2029 )
9596 - [ Brazilian Portuguese version] ( https://novatec.com.br/livros/estruturas-de-dados-algoritmos-em-javascript/ )
9697
9798 Book link - third edition:
Original file line number Diff line number Diff line change @@ -2,6 +2,12 @@ const { HashTable } = PacktDataStructuresAlgorithms;
22
33const hash = new HashTable ( ) ;
44
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+
511console . log ( hash . hashCode ( 'Ygritte' ) + ' - Ygritte' ) ;
612console . log ( hash . hashCode ( 'Jonathan' ) + ' - Jonathan' ) ;
713console . log ( hash . hashCode ( 'Jamie' ) + ' - Jamie' ) ;
You can’t perform that action at this time.
0 commit comments