data-structures-and-algorithms

Hashtables

Hash Table is a data structure which stores data in an associative manner. In a hash table, data is stored in an array format, where each data value has its own unique index value. Access of data becomes very fast if we know the index of the desired data.

Challenge

Implement a Hashtable Class with the following methods: