Location via proxy:   [ UP ]  
[Report a bug]   [Manage cookies]                
Skip to content

Commit 7db7376

Browse files
refactor 445
1 parent b407a15 commit 7db7376

File tree

1 file changed

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

1 file changed

+0
-16
lines changed

src/main/java/com/fishercoder/solutions/_445.java

-16
Original file line numberDiff line numberDiff line change
@@ -6,22 +6,6 @@
66
import java.util.Deque;
77
import java.util.Stack;
88

9-
/**
10-
* 445. Add Two Numbers II
11-
*
12-
* You are given two non-empty linked lists representing two non-negative integers.
13-
* The most significant digit comes first and each of their nodes contain a single digit. Add the two numbers and return it as a linked list.
14-
15-
You may assume the two numbers do not contain any leading zero, except the number 0 itself.
16-
17-
Follow up:
18-
What if you cannot modify the input lists? In other words, reversing the lists is not allowed.
19-
20-
Example:
21-
22-
Input: (7 -> 2 -> 4 -> 3) + (5 -> 6 -> 4)
23-
Output: 7 -> 8 -> 0 -> 7
24-
*/
259
public class _445 {
2610

2711
public static class Solution1 {

0 commit comments

Comments
 (0)