Fix whitespace typo.
This commit is contained in:
parent
ce97c38f1b
commit
2956811807
@ -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) {
|
||||||
|
Loading…
Reference in New Issue
Block a user