This repository has been archived on 2025-01-25. You can view files and clone it, but cannot push or open issues or pull requests.
2024-10-29 11:28:19 +01:00
..
2024-10-29 11:28:19 +01:00
2024-10-29 11:28:19 +01:00
2024-10-29 11:28:19 +01:00
2024-10-15 16:07:47 +02:00

Hashmaps

A hash map allows you to associate a value with a particular key. You may also know this by the names unordered map in C++, dictionary in Python or an associative array in other languages.

This is the other data structure that we've been talking about before, when talking about Vecs.

Further information