Skip to content

Instantly share code, notes, and snippets.

@mumunuu
Created February 28, 2021 12:29
Show Gist options
  • Save mumunuu/000f812580427c21d2d6f2a9834d9ba0 to your computer and use it in GitHub Desktop.
Save mumunuu/000f812580427c21d2d6f2a9834d9ba0 to your computer and use it in GitHub Desktop.
algorithm(leetcode) Delete Node in a Linked List
func deleteNode(node *ListNode) {
*node = *node.Next
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment