-
Notifications
You must be signed in to change notification settings - Fork 23
/
Copy path0002-add-two-numbers.js
38 lines (35 loc) · 1.04 KB
/
0002-add-two-numbers.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
/**
* 2. Add Two Numbers
* https://leetcode.com/problems/add-two-numbers/
* Difficulty: Medium
*
* 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 contains a single digit.
* Add the two numbers and return the sum as a linked list.
*
* You may assume the two numbers do not contain any leading zero, except the number 0 itself.
*/
/**
* Definition for singly-linked list.
* function ListNode(val, next) {
* this.val = (val===undefined ? 0 : val)
* this.next = (next===undefined ? null : next)
* }
*/
/**
* @param {ListNode} l1
* @param {ListNode} l2
* @return {ListNode}
*/
var addTwoNumbers = function(l1, l2) {
const result = new ListNode();
for (let tail = result, carry = 0; l1 || l2 || carry;) {
const value = (l1?.val ?? 0) + (l2?.val ?? 0) + carry;
tail.next = new ListNode(value % 10);
tail = tail.next;
carry = value >= 10 ? 1 : 0;
[l1, l2] = [l1 && l1.next, l2 && l2.next];
}
return result.next;
};