A HashMap is a data structure that indexes key-value pairs using a function that 'hashes' the key and assigns it to a bucket ...
Practice implementation of a HashMap using only an array and linked lists. Tests can be run with Node.js in the test folder.