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,870 questions

51,793 answers

573 users

How to merge two vectors without duplicate items in Rust

1 Answer

0 votes
use std::collections::HashSet;

fn main() {
    let array1 = vec!["rust", "performance", "safety", "concurrency", "rust"];
    let array2 = vec!["performance", "rust", "safety", "rust"];

    let mut set: HashSet<_> = HashSet::new();
    set.extend(array1);
    set.extend(array2);

    let merged_vec: Vec<_> = set.into_iter().collect();

    println!("{:?}", merged_vec);
}



   
/*
run:
  
["concurrency", "rust", "performance", "safety"]
  
*/

 



answered Dec 9, 2024 by avibootz

Related questions

1 answer 109 views
1 answer 88 views
88 views asked Oct 9, 2024 by avibootz
1 answer 104 views
1 answer 108 views
2 answers 255 views
2 answers 229 views
...