Skip to content

Commit 380de66

Browse files
authored
Added solution for 389
1 parent 4350bf6 commit 380de66

File tree

1 file changed

+20
-0
lines changed

1 file changed

+20
-0
lines changed
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
use std::collections::HashMap;
2+
3+
impl Solution {
4+
// Count instances of each character in s in a hashmap. Then subtract those instances from the same hashmap while iterating through t. If any character does not exist in hashmap or is left 0 times while iterating t, it means that is the extra character added in t
5+
pub fn find_the_difference(s: String, t: String) -> char {
6+
let mut map = HashMap::new();
7+
for ch in s.chars() {
8+
let count = map.entry(ch).or_insert(0);
9+
*count += 1;
10+
}
11+
for ch in t.chars() {
12+
let count = map.entry(ch).or_insert(0);
13+
if *count == 0 {
14+
return ch;
15+
}
16+
*count -= 1;
17+
}
18+
return '0';
19+
}
20+
}

0 commit comments

Comments
 (0)