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

Skip to content

Commit 3c288dd

Browse files
authored
Update addTwoNumbers.md
1 parent 64ae7f4 commit 3c288dd

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

addTwoNumbers.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ Explanation: 342 + 465 = 807.
3030
* @return {ListNode}
3131
*/
3232
var addTwoNumbers = function(l1, l2) {
33-
var carried = 0; // 用于进位
33+
var carried = 0; // 用于进位
3434
const head = new ListNode();
3535
const noop = {
3636
val: 0,

0 commit comments

Comments
 (0)