Skip to content

Instantly share code, notes, and snippets.

@dixia
Created June 5, 2013 13:54
Show Gist options
  • Save dixia/5714034 to your computer and use it in GitHub Desktop.
Save dixia/5714034 to your computer and use it in GitHub Desktop.
class Array
def take_last n
self[(self.size-n)...self.size]
end
def drop_last n
self[0...-n]
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment