Leetcode - 002 - Add Two Numbers:修订历史

跳到导航 跳到搜索

差异选择:选中要对比的版本的单选按钮,按Enter键或下方的按钮。
说明:(当前)=与最后版本之间的差异,(之前)=与上一版本之间的差异,=小编辑。

2024年5月17日 (星期五)

2024年5月14日 (星期二)

2024年5月9日 (星期四)

2024年4月25日 (星期四)

2024年4月24日 (星期三)

  • 当前之前 11:312024年4月24日 (三) 11:31阿奔 讨论 贡献 3,148字节 +3,148 创建页面,内容为“2. Add Two Numbers Medium You are given two non-empty linked lists representing two non-negative integers. The digits are stored in reverse order, and each of their nodes contains a single digit. Add the two numbers and return the sum as a linked list. You may assume the two numbers do not contain any leading zero, except the number 0 itself. <small>Example 1: Input: l1 = [2,4,3], l2 = [5,6,4] Output: [7,0,8] Explanation: 342 + 465 = 807. Example…”