Skip to content

Commit bb9981e

Browse files
authored
Update Solution.c
1 parent 6b22bb9 commit bb9981e

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

solution/0000-0099/0002.Add Two Numbers/Solution.c

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
12
/**
23
* Definition for singly-linked list.
34
* struct ListNode {
@@ -37,4 +38,4 @@ struct ListNode* addTwoNumbers(struct ListNode* l1, struct ListNode* l2) {
3738
struct ListNode* result = dummy->next;
3839
free(dummy);
3940
return result;
40-
}
41+
}

0 commit comments

Comments
 (0)