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 multiply two vectors in Rust

1 Answer

0 votes
fn multiply_vectors(vec1: &[i32], vec2: &[i32]) -> Vec<i32> {
    vec1.iter()
        .zip(vec2.iter())
        .map(|(a, b)| a * b)
        .collect()
}

fn main() {
    let vec1 = vec![1, 2, 3, 4];
    let vec2 = vec![5, 6, 7, 8];

    let result = multiply_vectors(&vec1, &vec2);

    for val in result {
        print!("{} ", val);
    }
}




/*
run:

5 12 21 32 

*/

 



answered Nov 3, 2025 by avibootz
...