码迷,mamicode.com
首页 > 其他好文 > 详细

「LeetCode」0003-Add Two Numbers(Typescript)

时间:2018-12-02 22:33:46      阅读:223      评论:0      收藏:0      [点我收藏+]

标签:turn   node   rip   ret   ext   list   class   pre   ber   

分析

代码

/**
 * @param {ListNode} l1
 * @param {ListNode} l2
 * @return {ListNode}
 */
var addTwoNumbers=function(l1, l2) {
    let dummyHead = new ListNode(0), node=dummyHead;
    let overflow=0, a, b, c, val;
    while(l1!==null || l2!==null) {
        a=(l1===null)?0:l1.val;
        b=(l2===null)?0:l2.val;
        c=a+b+overflow;
        val=c%10;
        overflow=Math.floor(c/10);
        node.next=new ListNode(val);
        node=node.next;
        if(l1!==null) l1=l1.next;
        if(l2!==null) l2=l2.next;
    }
    if(overflow!==0) {
        node.next=new ListNode(overflow);
    }
    return dummyHead.next;
}

「LeetCode」0003-Add Two Numbers(Typescript)

标签:turn   node   rip   ret   ext   list   class   pre   ber   

原文地址:https://www.cnblogs.com/samhx/p/LeetCode-0003.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!