Example:
If A is n1, and B is n2 digit positive numbers. A*B's digit range will be [c d] (c = min & d = max). Then return c+d.
Solution Stats
Problem Comments
4 Comments
Solution Comments
Show comments
Loading...
Problem Recent Solvers49
Suggested Problems
-
Getting the row and column location from a matrix
301 Solvers
-
Check if number exists in vector
14310 Solvers
-
317 Solvers
-
Test if two numbers have the same digits
267 Solvers
-
Find the square of the sum of the digits of a number
161 Solvers
More from this Author6
Problem Tags
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!
Is the explanation of the problem and test suite the same meaning?
Can anyone help me in understanding the problem statement? It's so confusing.
@Gareth
@Dyuman
If number of digits in A, n1 = 4, then A belongs to {10^4 to 10^5-1}
You will be given n1 and n2. You need to find the sum of ( min and max number of digits ) in A*B.
Let c be the number of digits in the smallest product of an n1-digit number and an n2-digit number and d be the number of digits in the largest product of an n1-digit number and an n2-digit number. Return c+d.