Mental Model
A hash map helps us find things quickly by using a special code to jump directly to where the item is stored.
Analogy: Imagine a huge library where books are scattered randomly. Without a system, you search shelf by shelf. A hash map is like having a special code on each book that tells you exactly which shelf and spot to look at instantly.
Keys: [apple, banana, grape] Hash Map Buckets: [0] -> null [1] -> banana -> null [2] -> apple -> null [3] -> grape -> null
