rustlings/exercises/11_hashmaps
Matt Nield 2f4e63b443
fix: Add clarification to instructions for hashmaps2.rs
In the instructions for hashmaps2.rs, the last sentence of the include the phrase "these fruits", which refers to fruits that were mentioned two sentences prior.

Having a sentence in between the first sentence in which the fruits were described and a later sentence in which the phrase "these fruits" is used makes this confusing to read, since the phrase "these fruits" does not come immediately after the mention of the fruits that the phrase refers to.

This pull request expands the last sentence to explicitly refer to the fruits being mentioned, in order to add clarity about the requirement of the exercise.
2024-07-05 08:27:51 -04:00
..
hashmaps1.rs Merge branch 'main' 2024-06-27 11:30:42 +02:00
hashmaps2.rs fix: Add clarification to instructions for hashmaps2.rs 2024-07-05 08:27:51 -04:00
hashmaps3.rs hashmaps3 solution 2024-06-26 01:52:33 +02:00
README.md Update Exercises Directory Names to Reflect Order 2023-10-16 07:37:12 -04: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