Skip to content

Commit

Permalink
fix(collections): Naming exercises for vectors and hashmap
Browse files Browse the repository at this point in the history
  • Loading branch information
Morsicus committed Mar 18, 2021
1 parent 0d894e6 commit bef39b1
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 10 deletions.
7 changes: 1 addition & 6 deletions exercises/collections/vec2.rs
Original file line number Diff line number Diff line change
Expand Up @@ -28,11 +28,6 @@ mod tests {
let v: Vec<i32> = (1..).filter(|x| x % 2 == 0).take(5).collect();
let ans = vec_loop(v.clone());

assert_eq!(
ans,
v.iter()
.map(|x| x * 2)
.collect::<Vec<i32>>()
);
assert_eq!(ans, v.iter().map(|x| x * 2).collect::<Vec<i32>>());
}
}
8 changes: 4 additions & 4 deletions info.toml
Original file line number Diff line number Diff line change
Expand Up @@ -359,7 +359,7 @@ each constant."""
# COLLECTIONS

[[exercises]]
name = "collections1"
name = "vec1"
path = "exercises/collections/vec1.rs"
mode = "test"
hint = """
Expand All @@ -373,7 +373,7 @@ of the Rust book to learn more.
"""

[[exercises]]
name = "collections2"
name = "vec2"
path = "exercises/collections/vec2.rs"
mode = "test"
hint = """
Expand All @@ -383,7 +383,7 @@ Hint 2: Check the suggestion from the compiler error ;)
"""

[[exercises]]
name = "collections3"
name = "hashmap1"
path = "exercises/collections/hashmap1.rs"
mode = "test"
hint = """
Expand All @@ -394,7 +394,7 @@ Hint 2: Number of fruits should be at least 5. And you have to put
"""

[[exercises]]
name = "collections4"
name = "hashmap2"
path = "exercises/collections/hashmap2.rs"
mode = "test"
hint = """
Expand Down

0 comments on commit bef39b1

Please sign in to comment.