KirogiYi ARTS打卡:第一周

2019-03-23  本文已影响0人  NewPage

Algorithm(两数相加)


public ListNode addTwoNumbers(ListNode l1, ListNode l2) {
    int carryValue = 0;
    int currSum = 0;
    ListNode resultNode = new ListNode(0);
    ListNode moveL1 = l1, moveL2 = l2, moveResult = resultNode;

    while (moveL1 != null || moveL2 != null) {
        currSum = (moveL1 == null? 0:moveL1.val) + (moveL2 == null? 0:moveL2.val) + carryValue;
        carryValue = currSum / 10;
        moveResult.next = new ListNode(currSum % 10);

        moveResult = moveResult.next;
        if (moveL1 != null) moveL1 = moveL1.next;
        if (moveL2 != null) moveL2 = moveL2.next;
    }

    if (carryValue > 0) {
        moveResult.next = new ListNode(carryValue);
    }
    return resultNode.next;
}

Review (基于VuePress的博客构建)


响应式布局;主页可选;简洁的开箱即用搜索功能;Algolia搜索;自定义导航栏和侧边栏;自动生成Github链接和页面链接。

Tip


ES6中扩展运算符:"...",引用、组合、拆分等使得代码看起来相当简洁,示例如下:
1.console.log([a,b,b]) ==> a b c
2.let add = (x, y) => x + y
let numbers = [3, 45]
console.log(add(...numbers)) ==> 45 + 3
3.let arr1 = ['a', 'b']
let arr2 = ['c']
let arr3 = ['d', 'e']
[...arr1, ...arr2, ...arr3] ==> ['a', 'b', 'c', 'd', 'e']

Share


上一篇 下一篇

猜你喜欢

热点阅读