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 remove duplicates from an array in Rust

1 Answer

0 votes
use std::collections::HashSet;

fn remove_duplicates(arr: &[i32]) -> Vec<i32> {
    let set: HashSet<_> = arr.iter().cloned().collect();
    
    set.into_iter().collect()
}

fn main() {
    let array = [1, 3, 4, 3, 3, 4, 1, 1, 5, 5, 6, 7, 8, 8, 8, 8, 9];
    
    let unique_array = remove_duplicates(&array);
    
    println!("{:?}", unique_array); 
}



  
/*
run:
  
[7, 5, 1, 4, 6, 8, 3, 9]
 
*/

 



answered Jan 27, 2025 by avibootz

Related questions

1 answer 122 views
1 answer 109 views
1 answer 69 views
1 answer 71 views
1 answer 105 views
...