Skip to content

Instantly share code, notes, and snippets.

@jeffkreeftmeijer
Created July 31, 2009 10:38
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 jeffkreeftmeijer/159175 to your computer and use it in GitHub Desktop.
Save jeffkreeftmeijer/159175 to your computer and use it in GitHub Desktop.
class Array
def swap(a,b)
swapped = self.clone
swapped[a], swapped[b] = self[b], self[a]
swapped
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment