DIY: Multiply Strings
Solve the interview question "Multiply Strings" in this lesson.
We'll cover the following
Problem statement
You are given two non-negative integers represented as strings. Your task is to find the product of the given two integer numbers in the form of a string. For this, you will first convert the given strings to an integer without using the built-in library and then use the multiplication operator.
Constraints
1 <= first.length, second.length <= 200
first
andsecond
consist of digits only.- The
firstN
and thesecond
do not contain any leading zero, except the number 0 itself.
Input
The inputs to the function are strings with integer values. The following is an example input:
first = 5
second = 6
Output
The following is the output of the above input:
30
Coding exercise
Implement the function multiply(first, second)
, which accepts two string arguments first
and second
storing non-negative integer numbers and returns the product of the two integers as a string.
Level up your interview prep. Join Educative to access 80+ hands-on prep courses.