Skip to content

Instantly share code, notes, and snippets.

@oliverswitzer
Created December 18, 2013 04:33
Show Gist options
  • Save oliverswitzer/8017317 to your computer and use it in GitHub Desktop.
Save oliverswitzer/8017317 to your computer and use it in GitHub Desktop.
Fibo
def fibo_finder
if n < 2
n
else
fibo_finder(n-1) + fibo_finder(n-2)
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment