Skip to content

Commit

Permalink
Formatted the code
Browse files Browse the repository at this point in the history
  • Loading branch information
github-actions[bot] committed Dec 9, 2023
1 parent 534226b commit 43bd914
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ Node* insertBeforeTail(Node* head, int val){
Node* newHead = new Node(val);
return newHead;
}

if (head->next == NULL && head->back == NULL) {
insertBeforeHead(head, val);
}
Expand Down

0 comments on commit 43bd914

Please sign in to comment.