Skip to content

Instantly share code, notes, and snippets.

@kalda341
Created February 2, 2015 02:22
Show Gist options
  • Save kalda341/1815d07cb4c1d012f0a8 to your computer and use it in GitHub Desktop.
Save kalda341/1815d07cb4c1d012f0a8 to your computer and use it in GitHub Desktop.
def find_min(head):
if head.get_next:
next_min = head.get_next()
return head.value if head.value < next_min else next_min
return head.value
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment