Leetcode Solutions Java Python C++
All contents and pictures on this website come from the Internet and are updated regularly every week. They are for personal study and research only, and should not be used for commercial purposes. Thank you for your cooperation.
Welcome to Subscribe On Youtube:

706. Design HashMap

Design a HashMap without using any built-in hash table libraries.

To be specific, your design should include these functions:


Example:

MyHashMap hashMap = new MyHashMap();
hashMap.put(1, 1);          
hashMap.put(2, 2);        
hashMap.get(1);            // returns 1
hashMap.get(3);            // returns -1 (not found)
hashMap.put(2, 1);          // update the existing value
hashMap.get(2);            // returns 1
hashMap.remove(2);          // remove the mapping for 2
hashMap.get(2);            // returns -1 (not found)


Note:

Difficulty:

Easy

Lock:

Normal

Company:

Adobe Amazon Apple Atlassian Goldman Sachs Google LinkedIn Microsoft Oracle Reddit Salesforce ServiceNow Tableau Twitter Uber

Problem Solution

706-Design-HashMap

All Problems:

Link to All Problems
All contents and pictures on this website come from the Internet and are updated regularly every week. They are for personal study and research only, and should not be used for commercial purposes. Thank you for your cooperation.