Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 09ff3cb

Browse files
authored
Update addTwoNumbers.md
1 parent 1a919cb commit 09ff3cb

File tree

1 file changed

+10
-0
lines changed

1 file changed

+10
-0
lines changed

addTwoNumbers.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,15 @@
11
## 题目描述
2+
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 contain a single digit. Add the two numbers and return it as a linked list.
23

4+
You may assume the two numbers do not contain any leading zero, except the number 0 itself.
5+
6+
Example
7+
```
8+
Input: (2 -> 4 -> 3) + (5 -> 6 -> 4)
9+
Output: 7 -> 0 -> 8
10+
Explanation: 342 + 465 = 807.
11+
12+
```
313
## 思路
414

515
## 代码

0 commit comments

Comments
 (0)