Skip to content Skip to sidebar Skip to footer
Showing posts with the label Hashtable

How Hashtable Makes Sure Object Keys Are Hashed Into A Unique Index In Javascript

After looking at a simple hash table implementation in JavaScript, the key index is computed as: fu… Read more How Hashtable Makes Sure Object Keys Are Hashed Into A Unique Index In Javascript

Get Count Of Most Repeated Letter In A Word

I am trying to get the count of the most repeated letter in a word function GreatestCount(str) { … Read more Get Count Of Most Repeated Letter In A Word