mirror of https://github.com/01-edu/public.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
Augusto
031873461f
|
4 years ago | |
---|---|---|
.. | ||
README.md | 4 years ago |
README.md
simple_hash
Instructions
-
Create the function
contain
that checks aHashMap
to see if it contains the given key. -
Create the function
remove
that removes a given key from theHashMap
.
Expected Functions
fn contain(h: HashMap<&str, i32>, s: &str) -> bool {
}
fn remove(mut h: HashMap<&str, i32>, s: &str) {
}
Usage
Here is a program to test your function.
use std::collections::HashMap;
fn main() {
let mut hash: HashMap<&str, i32> = HashMap::new();
hash.insert("Daniel", 122);
hash.insert("Ashley", 333);
hash.insert("Katie", 334);
hash.insert("Robert", 14);
println!(
"Does the HashMap contains the name Roman? => {}",
contain(hash.clone(), "Roman")
);
println!(
"Does the HashMap contains the name Katie? => {}",
contain(hash.clone(), "Katie")
);
println!("Removing Robert {:?}", remove(hash.clone(), "Robert"));
println!("Hash {:?}", hash);
}
And its output
student@ubuntu:~/[[ROOT]]/test$ cargo run
Does the HashMap contains the name Roman? => false
Does the HashMap contains the name Katie? => true
Removing Robert ()
Hash {"Daniel": 122, "Ashley": 333, "Robert": 14, "Katie": 334}
student@ubuntu:~/[[ROOT]]/test$