Given two row vectors, v1 and v2, each representing an integer, such that the vector elements are the digits from left to right, return a row vector v3, of the same format, that represents the product of the integers represented by v1 and v2.

Example 1:

v1 = [1 2]

v2 = [5 0 0]

v3 = [6 0 0 0]

Example 2:

v1 = [9 9]

v2 = [9 9]

v3 = [9 8 0 1]

Solution Stats

112 Solutions

33 Solvers

Last Solution submitted on Dec 05, 2025

Last 200 Solutions

Problem Comments

Solution Comments

Show comments
Loading...