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

483 Solutions

397 Solvers

Last Solution submitted on Mar 06, 2026

Last 200 Solutions

Problem Comments

Solution Comments

Show comments
Loading...