1
0
Fork 0
mirror of https://gitlab.com/mfocko/LeetCode.git synced 2024-11-09 15:59:06 +01:00

rs: add “1207. Unique Number of Occurrences”

Signed-off-by: Matej Focko <mfocko@redhat.com>
This commit is contained in:
Matej Focko 2024-01-11 23:19:00 +01:00
parent 744059e7b1
commit cece461197
Signed by: mfocko
GPG key ID: 7C47D46246790496

View file

@ -0,0 +1,13 @@
use std::collections::{HashMap, HashSet};
impl Solution {
pub fn unique_occurrences(arr: Vec<i32>) -> bool {
// count frequencies
let mut freqs: HashMap<i32, i32> = HashMap::new();
for x in &arr {
*freqs.entry(*x).or_insert(0) += 1;
}
freqs.values().collect::<HashSet<_>>().len() == freqs.len()
}
}