rustlings/exercises/hashmaps
Bert Apperlo 8974e33f69
fix: update hashmaps3.rs
2023-06-08 16:44:39 +02:00
..
README.md feat(docs): add markdown linter for exercises README.md files 2023-03-30 19:53:22 +03:30
hashmaps1.rs fix(hashmaps): adjust hint comments 2022-07-14 12:58:28 +02:00
hashmaps2.rs reword hashmaps2 a bit more 2023-03-26 15:21:21 +02:00
hashmaps3.rs fix: update hashmaps3.rs 2023-06-08 16:44:39 +02:00

README.md

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