Skip to content

Instantly share code, notes, and snippets.

@taybenlor
Created November 17, 2011 12:37
Show Gist options
  • Save taybenlor/1373046 to your computer and use it in GitHub Desktop.
Save taybenlor/1373046 to your computer and use it in GitHub Desktop.
Python Golf Sort
def s(l):
if len(l)<2:return l
return [l.pop(l.index(min(l)))] + s(l)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment