Skip to content

Instantly share code, notes, and snippets.

@ArunkumarRamanan
Forked from adarsh0806/delete_first.py
Created July 7, 2019 14:25
Show Gist options
  • Save ArunkumarRamanan/ec0a503a73ffc39c9dced30df56e6b90 to your computer and use it in GitHub Desktop.
Save ArunkumarRamanan/ec0a503a73ffc39c9dced30df56e6b90 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