Skip to content

Solution of 0003 and 0004 in c language and readme done #4427

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 17 commits into from
May 26, 2025
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Update Solution.c
  • Loading branch information
yanglbme authored May 23, 2025
commit bb9981e7b4757a58f0d5c035ec769a467ab3bfb1
3 changes: 2 additions & 1 deletion solution/0000-0099/0002.Add Two Numbers/Solution.c
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@

/**
* Definition for singly-linked list.
* struct ListNode {
Expand Down Expand Up @@ -37,4 +38,4 @@ struct ListNode* addTwoNumbers(struct ListNode* l1, struct ListNode* l2) {
struct ListNode* result = dummy->next;
free(dummy);
return result;
}
}