Given two input vectors, return the element-by-element product.

Example

 A = [1 2 3]
 B = [7 3 1]

The answer should be

 [7 6 3]

Solution Stats

485 Solutions

399 Solvers

Last Solution submitted on Apr 23, 2026

Last 200 Solutions

Problem Comments

Solution Comments

Show comments
Loading...