Skip to content

Instantly share code, notes, and snippets.

@metallurgix
Created July 7, 2014 07:20
Show Gist options
  • Save metallurgix/f8c7c2dd11a34c67f73c to your computer and use it in GitHub Desktop.
Save metallurgix/f8c7c2dd11a34c67f73c to your computer and use it in GitHub Desktop.
Fibonacci Series (Ruby)
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