Skip to content

Instantly share code, notes, and snippets.

@Kjeanclaude
Forked from adarsh0806/delete_first.py
Created December 8, 2016 22:35
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Kjeanclaude/c10f8295d6cabfe7ca302c0166b4b114 to your computer and use it in GitHub Desktop.
Save Kjeanclaude/c10f8295d6cabfe7ca302c0166b4b114 to your computer and use it in GitHub Desktop.
delete_first
def delete_first(self):
deleted = self.head
if self.head:
self.head = self.head.next
deleted.next = None
return deleted
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment