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 c4cb134 commit affa621Copy full SHA for affa621
src/main/java/com/fishercoder/solutions/_2.java
@@ -2,17 +2,6 @@
2
3
import com.fishercoder.common.classes.ListNode;
4
5
-/**
6
- * 2. Add Two Numbers
7
-
8
- You are given two linked lists representing two non-negative numbers.
9
- The digits are stored in reverse order and each of their nodes contain a single digit.
10
- Add the two numbers and return it as a linked list.
11
12
-Input: (2 -> 4 -> 3) + (5 -> 6 -> 4)
13
-Output: 7 -> 0 -> 8
14
- */
15
16
public class _2 {
17
public static class Solution1 {
18
public ListNode addTwoNumbers(ListNode l1, ListNode l2) {
0 commit comments