Earlier quoted context omitted.
the keywords "ill" and "duh" will cause collision. I know this because I ran into this issue trying to be clever on leetcode's anagram grouping problem.
Using what hash mechanism? I tested with SHA512 and got different results: * ill - 2ae60a99f87408af77066079879865d907201ff44e7b1f26d911afcd1097c4c32162b97546c404d3a305396698ea530d3c3690adb7dcbc91ec685837f895a37b * duh - e44e6d93cd165ec8cdeaa632abe1c35d9a71533cc68072e100c5307ea3be17bc4f10e258785bef77d31664be0f1c3f427528c7450d52082a90c4ee86c7012184
Classic Algorithms Implemented in JavaScript
31–36 of 36 posts
Re: Classic Algorithms Implemented in JavaScript
#32http://www.timqian.com/star-history/#trekhleb/javascript-alg...
Re: Classic Algorithms Implemented in JavaScript
#33Re: Classic Algorithms Implemented in JavaScript
#34Earlier quoted context omitted.
Well its not a list per se but many of the interview prep sites tag their problems with the appropriate algorithm/data structure for the job. As someone who has his first SV phone technical interview on Monday and has done ~30 problems in the last two weeks, I can say after solving about 2-3 of them over a number of hours or days you start to recognize which algorithm will get the job done from the problem descriptio…
Interesting :D Would be nice if you could post a list of your resources :)
Re: Classic Algorithms Implemented in JavaScript
#35Re: Classic Algorithms Implemented in JavaScript
#36The implementation of a hash table uses a hash table, which feels like cheating to me. Also I suspect that adding together the ascii values of the characters in the key is not necessarily the best hash function.
Still better than using the length of the string as your hash value. Not my proudest moment but sometimes, you want to see the world burn. That and I forgot to do my hw and class was in a few minutes.