rustlings/exercises/hashmaps
Bert Apperlo bbfb4c7e63
feat: added test function to hashmaps2.rs
The existing test functions only check if a kind of fruit exists in the hashmap, but not if the amount of fruits is higher than zero. This new test function solves this.
2023-06-08 15:49:07 +02:00
..
hashmaps1.rs fix(hashmaps): adjust hint comments 2022-07-14 12:58:28 +02:00
hashmaps2.rs feat: added test function to hashmaps2.rs 2023-06-08 15:49:07 +02:00
hashmaps3.rs fix(hashmaps3): fix typo in todo hint 2022-12-20 21:17:32 -06:00
README.md feat(docs): add markdown linter for exercises README.md files 2023-03-30 19:53:22 +03:30

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