Data commit
This commit is contained in:
parent
7387c8f97b
commit
cb5bb5e222
199093 changed files with 3378972 additions and 0 deletions
9
Task/Hash-from-two-arrays/Rust/hash-from-two-arrays.rust
Normal file
9
Task/Hash-from-two-arrays/Rust/hash-from-two-arrays.rust
Normal file
|
|
@ -0,0 +1,9 @@
|
|||
use std::collections::HashMap;
|
||||
|
||||
fn main() {
|
||||
let keys = ["a", "b", "c"];
|
||||
let values = [1, 2, 3];
|
||||
|
||||
let hash = keys.iter().zip(values.iter()).collect::<HashMap<_, _>>();
|
||||
println!("{:?}", hash);
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue