Fix whitespace typo.

This commit is contained in:
Jesse Brault 2025-02-10 08:07:13 -06:00
parent ce97c38f1b
commit 2956811807

View File

@ -13,7 +13,7 @@ struct ListNode {
* struct ListNode *next; * struct ListNode *next;
* }; * };
*/ */
struct ListNode* addTwoNumbers(struct ListNode* l1, struct ListNode* l2) { struct ListNode* addTwoNumbers(struct ListNode* l1, struct ListNode* l2) {
struct ListNode *first = NULL, *current = NULL; struct ListNode *first = NULL, *current = NULL;
while (l1 != NULL) { while (l1 != NULL) {
if (current == NULL) { if (current == NULL) {