Skip to content

Instantly share code, notes, and snippets.

@ku1ik
Created May 24, 2009 12:32
Show Gist options
  • Save ku1ik/117080 to your computer and use it in GitHub Desktop.
Save ku1ik/117080 to your computer and use it in GitHub Desktop.
class Array
def qsort
return self if empty?
select { |x| x < first }.qsort + [first] + select { |x| x > first }.qsort
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment