Skip to content

Instantly share code, notes, and snippets.

@kkdai
Created February 5, 2014 12:01
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save kkdai/8822265 to your computer and use it in GitHub Desktop.
Save kkdai/8822265 to your computer and use it in GitHub Desktop.
def fibinacci(fib_number)
return fib_number <= 1 ? 1 : fibinacci(fib_number - 1) + fibinacci(fib_number - 2)
end
puts fibinacci(1) #output 1
puts fibinacci(3) #output 3
puts fibinacci(5) #output 8
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment