Welcome to collectivesolver - Programming & Software Q&A with code examples. A website with trusted programming answers. All programs are tested and work.

Contact: aviboots(AT)netvision.net.il

Buy a domain name - Register cheap domain names from $0.99 - Namecheap

Scalable Hosting That Grows With You

Secure & Reliable Web Hosting, Free Domain, Free SSL, 1-Click WordPress Install, Expert 24/7 Support

Semrush - keyword research tool

Boost your online presence with premium web hosting and servers

Disclosure: My content contains affiliate links.

39,890 questions

51,817 answers

573 users

How to find duplicate elements in an array with Rust

1 Answer

0 votes
use std::collections::HashSet;

fn find_duplicates(arr: &[i32]) -> Vec<i32> {
    let mut seen = HashSet::new();
    let mut duplicates = Vec::new();

    for &item in arr {
        if !seen.insert(item) {
            duplicates.push(item);
        }
    }

    duplicates
}

fn main() {
    let arr = [1, 2, 3, 2, 2, 4, 4, 4, 4, 3, 5, 6, 3];
    let duplicates = find_duplicates(&arr);
    
    println!("Duplicates: {:?}", duplicates); 
}


      
/*
run:
  
Duplicates: [2, 2, 4, 4, 4, 3, 3]
 
*/
 

 



answered Oct 26, 2024 by avibootz
...