2. Add Two Numbers
Description
You are given two non-empty linked lists representing two non-negative integers. The digits are stored in reverse order and each of their nodes contain a single digit. Add the two numbers and return it as a linked list.
You may assume the two numbers do not contain any leading zero, except the number 0 itself.
Constraints
Approach
Links
GeeksforGeeks
ProgramCreek
Examples
Input: (2 -> 4 -> 3) + (5 -> 6 -> 4)
Output: 7 -> 0 -> 8
Explanation: 342 + 465 = 807.

Solutions
/**
*
*
*/
/**
* Definition for singly-linked list.
* public class ListNode {
* int val;
* ListNode next;
* ListNode(int x) { val = x; }
* }
*/
class Solution {
public ListNode addTwoNumbers(ListNode l1, ListNode l2) {
ListNode rootNode = null;
int carry = 0;
while(l1 != null || l2 != null) {
int sum = getValue(l1) + getValue(l2) + carry;
if(sum / 10 > 0) {
carry = sum / 10;
sum = sum % 10;
} else {
carry = 0;
}
rootNode = insertNode(rootNode, sum);
if(l1 != null) {
l1 = l1.next;
}
if(l2 != null) {
l2 = l2.next;
}
}
if(carry > 0) {
rootNode = insertNode(rootNode, carry);
}
return rootNode;
}
public int getValue(ListNode node) {
if(node == null) {
return 0;
} else {
return node.val;
}
}
public ListNode insertNode(ListNode rootNode, int val) {
ListNode newNode = new ListNode(val);
if(rootNode == null) {
rootNode = newNode;
} else {
ListNode tempNode = rootNode;
while(tempNode.next != null) {
tempNode = tempNode.next;
}
tempNode.next = newNode;
}
return rootNode;
}
}
Follow up
Last updated
Was this helpful?