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

Commit bbff89f

Browse files
author
Ram swaroop
committed
add nos in linked list: modified
1 parent 635eacb commit bbff89f

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

src/me/ramswaroop/linkedlists/AddNumbersInTwoLists.java

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -63,6 +63,11 @@ public static SingleLinkedList<Integer> add(SingleLinkedList<Integer> list1,
6363
return resultList;
6464
}
6565

66+
public static SingleLinkedList<Integer> add_V1(SingleLinkedList<Integer> list1,
67+
SingleLinkedList<Integer> list2) {
68+
return null;
69+
}
70+
6671
public static void main(String a[]) {
6772
SingleLinkedList<Integer> linkedList1 = new SingleLinkedList<>();
6873
linkedList1.add(7);

0 commit comments

Comments
 (0)