-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.js
63 lines (52 loc) · 1.13 KB
/
index.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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
/**
* Definition for singly-linked list.
* function ListNode(val) {
* this.val = val;
* this.next = null;
* }
*/
/**
* @param {ListNode} l1
* @param {ListNode} l2
* @return {ListNode}
*/
var addTwoNumbers = function(l1, l2) {
let b = 0;
let first,pre;
first = new ListNode(getV(l1.val, l2.val));
pre = first;
while(l1.next && l2.next){
l1 = l1.next;
l2 = l2.next;
pre.next = new ListNode(getV(l1.val, l2.val));
pre = pre.next;
}
let l;
if(l1.next === null) l = l2;
if(l2.next === null) l = l1;
if(l.next === null) {
if(b === 1){
pre.next = new ListNode(1);
}
return first;
}
while(l.next){
l = l.next;
pre.next = new ListNode(getV(l.val, 0));
pre = pre.next;
}
if(b === 1){
pre.next = new ListNode(1);
}
return first;
function getV(v1,v2){
let v = v1 + v2 + b;
if(v >= 10){
b = 1;
v = v -10;
}else{
b = 0;
}
return v;
}
};