diff options
| author | mokou <mokou@fastmail.com> | 2022-07-12 15:18:05 +0200 |
|---|---|---|
| committer | mokou <mokou@fastmail.com> | 2022-07-12 15:18:05 +0200 |
| commit | 3c4c9c54c98142f114018bbbe4d0d96d63646a5b (patch) | |
| tree | 078f63daad5d9bfec1f526783aa2435a2596d8f2 /info.toml | |
| parent | 2f7fd513041c7c6275552650881a79b9120aaacf (diff) | |
feat: remove collections to hashmaps
Diffstat (limited to 'info.toml')
| -rw-r--r-- | info.toml | 10 |
1 files changed, 5 insertions, 5 deletions
@@ -445,11 +445,11 @@ UNIX_EPOCH and SystemTime are declared in the std::time module. Add a use statem for these two to bring them into scope. You can use nested paths or the glob operator to bring these two in using only one line.""" -# COLLECTIONS +# HASHMAPS [[exercises]] -name = "hashmap1" -path = "exercises/collections/hashmap1.rs" +name = "hashmaps1" +path = "exercises/hashmaps/hashmaps1.rs" mode = "test" hint = """ Hint 1: Take a look at the return type of the function to figure out @@ -459,8 +459,8 @@ Hint 2: Number of fruits should be at least 5. And you have to put """ [[exercises]] -name = "hashmap2" -path = "exercises/collections/hashmap2.rs" +name = "hashmaps2" +path = "exercises/hashmaps/hashmaps2.rs" mode = "test" hint = """ Use the `entry()` and `or_insert()` methods of `HashMap` to achieve this. |
