We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d80200f commit 29c9cfcCopy full SHA for 29c9cfc
src/main/java/com/fishercoder/solutions/_43.java
@@ -1,18 +1,5 @@
1
package com.fishercoder.solutions;
2
3
-/**
4
- * 43. Multiply Strings
5
- *
6
- * Given two non-negative integers num1 and num2 represented as strings, return the product of num1 and num2.
7
-
8
- Note:
9
10
- The length of both num1 and num2 is < 110.
11
- Both num1 and num2 contains only digits 0-9.
12
- Both num1 and num2 does not contain any leading zero.
13
- You must not use any built-in BigInteger library or convert the inputs to integer directly.
14
15
- */
16
public class _43 {
17
18
/**Inspired by https://discuss.leetcode.com/topic/30508/easiest-java-solution-with-graph-explanation
0 commit comments