Created
June 3, 2011 21:43
-
-
Save mikelikesbikes/1007228 to your computer and use it in GitHub Desktop.
Fibonacci with Inject!
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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