Skip to content

Instantly share code, notes, and snippets.

@Raynes
Created October 17, 2009 13:17
Show Gist options
  • Save Raynes/212339 to your computer and use it in GitHub Desktop.
Save Raynes/212339 to your computer and use it in GitHub Desktop.
class Integer
def expo(n)
(1..n).inject {|acc| acc += self * self} - 1
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment