Skip to content

Instantly share code, notes, and snippets.

@tliff
Created June 7, 2010 21:51
Show Gist options
  • Save tliff/429244 to your computer and use it in GitHub Desktop.
Save tliff/429244 to your computer and use it in GitHub Desktop.
def qs l
return[] if l.empty?
p = l.pop
a,b=l.partition{|i| i < p }
qs(a) +[p] +qs(b)
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment