[leetcode] add two numbers

题目地址c++ https://leetcode.com/problems/add-two-numbers/description/web 题目描述: 链表的数学求和,例子以下,很好理解的一个题目: Input : (2 -> 4 -> 3) + (5 -> 6 -> 4) Output: 7 -> 0 -> 8 Explanation: 342 + 465 = 807.svg code:ui /
相关文章
相关标签/搜索