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,819 answers

573 users

How to fill a vector with 1 and 0 in random locations with Rust

1 Answer

0 votes
use rand::Rng;

fn fill_vector_with_random_1_and_0(vec: &mut [i32]) {
    let mut rng = rand::thread_rng();
    
    for i in 0..vec.len() {
        vec[i] = rng.gen_range(0..2); // Generates either 0 or 1
    }
}

fn main() {
    let size = 10;
    let mut v = vec![0; size];
    
    fill_vector_with_random_1_and_0(&mut v);
    
    println!("{:?}", v);
}


  
/*
run:
  
[0, 1, 0, 1, 0, 1, 0, 0, 1, 1]
 
*/

 



answered Jan 26, 2025 by avibootz
edited Jan 26, 2025 by avibootz

Related questions

1 answer 71 views
1 answer 83 views
1 answer 80 views
1 answer 77 views
1 answer 75 views
1 answer 83 views
1 answer 79 views
...