Skip to content

Commit affa621

Browse files
refactor 2
1 parent c4cb134 commit affa621

File tree

1 file changed

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

1 file changed

+0
-11
lines changed

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

Lines changed: 0 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -2,17 +2,6 @@
22

33
import com.fishercoder.common.classes.ListNode;
44

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-
165
public class _2 {
176
public static class Solution1 {
187
public ListNode addTwoNumbers(ListNode l1, ListNode l2) {

0 commit comments

Comments
 (0)