美文网首页
两数之和

两数之和

作者: ClarkHo007 | 来源:发表于2020-07-05 17:07 被阅读0次
    两数这和.png
    var twoSum = function (nums, target) {
        const map = new Map()
        for (let i=0; i < nums.length; i+=1) {
            const n = nums[i]
            const n2 = target -n
            if (map.has(n2)) {
                return [map.get(n2), i]
            } else {
                map.set(n, i)
            }
        }
    }
    
    

    相关文章

      网友评论

          本文标题:两数之和

          本文链接:https://www.haomeiwen.com/subject/ydivqktx.html