Browse Source

feat(simple_hash): rewrite exercise completely

improve the way students are introduced to hash maps
pull/1541/head
Michele Sessa 2 years ago committed by Michele
parent
commit
9425070b2e
  1. 4
      subjects/simple_hash/README.md

4
subjects/simple_hash/README.md

@ -6,14 +6,14 @@ Create a **function** named `word_frequency_counter` which will receive a vector
Also create a function named `nb_distinct_words` which will take a reference to the `HashMap` and return the number of distinct words present in it.
> all the words tested will be lowercase
### Expected functions
```rust
pub fn word_frequency_counter(words: Vec<&str>) -> HashMap<&str, usize> {}
pub fn nb_distinct_words(frequency_count: &HashMap<&str, usize>) -> usize {
}
pub fn nb_distinct_words(frequency_count: &HashMap<&str, usize>) -> usize {}
```
### Usage

Loading…
Cancel
Save