Skip to content

Commit 4b5f18d

Browse files
committed
2
1 parent 97c2136 commit 4b5f18d

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

AddTwoNumbers/AddTwoNumbers.cpp

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@ class Solution {
1111
ListNode *addTwoNumbers(ListNode *l1, ListNode *l2) {
1212
// Start typing your C/C++ solution below
1313
// DO NOT write int main() function
14+
1415
int carry = 0;
1516
ListNode *list = new ListNode(0);
1617
ListNode *head = list;
@@ -57,4 +58,4 @@ class Solution {
5758
}
5859
return head->next;
5960
}
60-
};
61+
};

0 commit comments

Comments
 (0)