Skip to content

Instantly share code, notes, and snippets.

@vamsitallapudi
Last active June 24, 2020 12:41
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 vamsitallapudi/1148f2087956961adad805d0fc88fbc9 to your computer and use it in GitHub Desktop.
Save vamsitallapudi/1148f2087956961adad805d0fc88fbc9 to your computer and use it in GitHub Desktop.
def delete_at_start(head):
# edge case: return if head is null
if not head:
return None
head = head.next # moving head to next node
return head
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment