rustlings/exercises/collections
2022-07-12 15:16:25 +02:00
..
hashmap1.rs doc: Update collections exercises instruction to match the standard naming 2021-03-18 19:11:15 +01:00
hashmap2.rs fix(hashmap2): Update incorrect assertion (#660) 2021-04-20 11:15:49 +02:00
README.md feat: move vec exercises into their own folder 2022-07-12 15:16:25 +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