Skip to content

Instantly share code, notes, and snippets.

@tatey
Created August 2, 2009 12:13
Show Gist options
  • Save tatey/160046 to your computer and use it in GitHub Desktop.
Save tatey/160046 to your computer and use it in GitHub Desktop.
def last_but_one(ary)
if ary.size == 2
ary.first
else
last_but_one(ary.slice(1..ary.size))
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment