Skip to content

Instantly share code, notes, and snippets.

@mikelikesbikes
Created June 3, 2011 21:43
Show Gist options
  • Star 5 You must be signed in to star a gist
  • Fork 3 You must be signed in to fork a gist
  • Save mikelikesbikes/1007228 to your computer and use it in GitHub Desktop.
Save mikelikesbikes/1007228 to your computer and use it in GitHub Desktop.
Fibonacci with Inject!
def fib(n)
(0..n).inject([1,0]) { |(a,b), _| [b, a+b] }[0]
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment