Created
July 7, 2014 07:20
-
-
Save metallurgix/f8c7c2dd11a34c67f73c to your computer and use it in GitHub Desktop.
Fibonacci Series (Ruby)
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 n | |
i=0 | |
j=1 | |
(1..n).map{i=j+j=i} | |
i | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment