Skip to content

Instantly share code, notes, and snippets.

@itzsaga
Created March 9, 2017 04:36
Show Gist options
  • Save itzsaga/e79a35658f0a07e2772ca50051603ee7 to your computer and use it in GitHub Desktop.
Save itzsaga/e79a35658f0a07e2772ca50051603ee7 to your computer and use it in GitHub Desktop.
def swap_elements_from_to(array, index, new_index)
array[index], array[new_index] = array[new_index], array[index]
return array
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment