Skip to content

Instantly share code, notes, and snippets.

@j3ck
Created January 5, 2017 09:55
Show Gist options
  • Select an option

  • Save j3ck/a7fce259dbf694e261334165874d4288 to your computer and use it in GitHub Desktop.

Select an option

Save j3ck/a7fce259dbf694e261334165874d4288 to your computer and use it in GitHub Desktop.
def fib(n)
(2..n).inject( [0, 1] ) { |fib| fib << fib.last(2).reduce(:+) }[n]
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment