Skip to content

Commit 5899964

Browse files
committedJul 10, 2020
refactor 415
1 parent b4a04aa commit 5899964

File tree

1 file changed

+0
-12
lines changed
  • src/main/java/com/fishercoder/solutions

1 file changed

+0
-12
lines changed
 

Diff for: ‎src/main/java/com/fishercoder/solutions/_415.java

-12
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,5 @@
11
package com.fishercoder.solutions;
22

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-
*/
153
public class _415 {
164

175
public static class Solution1 {

0 commit comments

Comments
 (0)
Please sign in to comment.