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

Skip to content

Commit 698df85

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

File tree

1 file changed

+17
-0
lines changed

1 file changed

+17
-0
lines changed

addTwoNumbers.md

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,3 +13,20 @@ Explanation: 342 + 465 = 807.
1313
## 思路
1414

1515
## 代码
16+
```js
17+
/**
18+
* Definition for singly-linked list.
19+
* function ListNode(val) {
20+
* this.val = val;
21+
* this.next = null;
22+
* }
23+
*/
24+
/**
25+
* @param {ListNode} l1
26+
* @param {ListNode} l2
27+
* @return {ListNode}
28+
*/
29+
var addTwoNumbers = function(l1, l2) {
30+
31+
};
32+
```

0 commit comments

Comments
 (0)