Skip to content

Instantly share code, notes, and snippets.

@bjhaid
Forked from mikelikesbikes/gist:1007228
Created December 4, 2013 04:27
Show Gist options
  • Save bjhaid/7782342 to your computer and use it in GitHub Desktop.
Save bjhaid/7782342 to your computer and use it in GitHub Desktop.
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