Design Hashmap
HashMap is a data structure that stores key-value pairs in buckets. The specialty of hashmap is it gets any key value in constant time O(1).
The following are important terms in the context of hashmap.
Bucket: Each bucket is nothing but the slot in ...
chetan77.hashnode.dev6 min read