We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b4a04aa commit 5899964Copy full SHA for 5899964
src/main/java/com/fishercoder/solutions/_415.java
@@ -1,17 +1,5 @@
1
package com.fishercoder.solutions;
2
3
-/**
4
- * 415. Add Strings
5
- *
6
- * Given two non-negative numbers num1 and num2 represented as string, return the sum of num1 and num2.
7
-
8
- Note:
9
10
- 1. The length of both num1 and num2 is < 5100.
11
- 2. Both num1 and num2 contains only digits 0-9.
12
- 3. Both num1 and num2 does not contain any leading zero.
13
- 4. You must not use any built-in BigInteger library or convert the inputs to integer directly.
14
- */
15
public class _415 {
16
17
public static class Solution1 {
0 commit comments