Map (Dictionary)

Data structure that stores key-value pairs.

dictionary hash table

In computer science, a map (also known as a dictionary or hash table) is a data structure that stores key-value pairs. Each key must be unique within the map, and it's used to retrieve its associated value efficiently. Maps provide fast lookups based on keys.

Built by Tim Jones