LeetCode
字母的艺术
make it happen !
展开
-
【LeetCode 02】两数相加-----单链表
目录 1.问题:两数相加 2.方案:单链表 1.问题:两数相加 给出两个 非空 的链表用来表示两个非负的整数。其中,它们各自的位数是按照 逆序 的方式存储的,并且它们的每个节点只能存储 一位 数字。 如果,我们将这两个数相加起来,则会返回一个新的链表来表示它们的和。 您可以假设除了数字 0 之外,这两个数都不会以 0 开头。 输入:(2 -> 4 -> 3) + (5 -...原创 2019-04-10 11:16:52 · 210 阅读 · 0 评论 -
【LeetCode 01】两数之和---- HashMap
目录 1、Question——TwoSum 1、Question——TwoSum Given an array of integers, returnindicesof the two numbers such that they add up to a specific target. You may assume that each input would haveexact...原创 2019-03-31 23:08:32 · 124 阅读 · 0 评论