1
0
Fork 0
mirror of https://github.com/rust-lang/rustlings.git synced 2024-05-30 19:16:09 +02:00
rustlings/exercises/hashmaps
Ali Afsharzadeh 382e16eb7e feat(docs): add markdown linter for exercises README.md files 2023-03-30 19:53:22 +03:30
..
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(hashmaps3): fix typo in todo hint 2022-12-20 21:17:32 -06: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