Skip to content

Commit

Permalink
Update insert-at-end.js
Browse files Browse the repository at this point in the history
  • Loading branch information
kounkou authored Nov 28, 2024
1 parent fab9672 commit 2bdd9d5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion logic/linked-list/insert-at-end.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ var question = [
{
id: "Insert at end",
category: "Linked List",
placeHolderCpp: `void insertAtEnd(ListNode** head, int v) {\n ...\n}\n\nvoid printList(ListNode* head) {\n ...\n}\n\n\n\n\n\n\n\n\n\n\n`,
placeHolderCpp: `void insertAtEnd(ListNode** head, int v) {\n ...\n}`,
placeHolderGo: `func insertAtEnd(head **Node, newData int) {\n ...\n}\n\nfunc printList(head *Node) {\n ...\n}\n\n\n\n\n\n\n\n\n\n\n`,
difficulty: "Medium",
question: "Insert at Linked List end",
Expand Down

0 comments on commit 2bdd9d5

Please sign in to comment.