Skip to content

Instantly share code, notes, and snippets.

@jbianquetti
Forked from mikelikesbikes/gist:1007228
Created October 22, 2013 19:52
Show Gist options
  • Select an option

  • Save jbianquetti/7107036 to your computer and use it in GitHub Desktop.

Select an option

Save jbianquetti/7107036 to your computer and use it in GitHub Desktop.
def fib(n)
(0..n).inject([1,0]) { |(a,b), _| [b, a+b] }[0]
end
@jbianquetti
Copy link
Copy Markdown
Author

Fibonacci number generator

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment