Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

2. Add Two Numbers #284

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
64 changes: 64 additions & 0 deletions algorithms/java/Add Two Numbers.java
Original file line number Diff line number Diff line change
@@ -0,0 +1,64 @@
//Difficulty-Medium

/**
* Definition for singly-linked list.
* public class ListNode {
* int val;
* ListNode next;
* ListNode() {}
* ListNode(int val) { this.val = val; }
* ListNode(int val, ListNode next) { this.val = val; this.next = next; }
* }
*/
class Solution {
public ListNode addTwoNumbers(ListNode l1, ListNode l2) {
int carry=0,sum=0,add=0;
ListNode head=new ListNode();
ListNode n=new ListNode(0,head);
while(l1!=null || l2!=null){
ListNode l3=new ListNode();
if(l1!=null && l2!=null){
add=l1.val+l2.val;
l1=l1.next;
l2=l2.next;
}
else if(l1!=null){
add=l1.val;
l1=l1.next;
}
else{
add=l2.val;
l2=l2.next;
}

sum=(add+carry)%10;
carry=(add+carry)/10;

if(head==null){
head.val=sum;
head.next=null;
}
else{
// n=head;
while(n.next!=null){
n=n.next;
}
l3.val=sum;
l3.next=null;
n.next=l3;

}

}
if(carry==1){
ListNode node=new ListNode();
node.val=carry;
node.next=null;
while(n.next!=null)
n=n.next;
n.next=node;
}

return head.next;
}
}