「LeetCode」0003-Add Two Numbers(Typescript)

Posted Thorough Repeater

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了「LeetCode」0003-Add Two Numbers(Typescript)相关的知识,希望对你有一定的参考价值。

分析

代码

/**
 * @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)的主要内容,如果未能解决你的问题,请参考以下文章

leetcode算法题笔记|two sum

leetcode mock interview-two sum II

Leetcode Two Sum

40.leetcode17_letter_combinations_of_a_phone_number

LeetCode1. Two Sum 解题报告

[LeetCode] 1 Two Sum