Skip to content

Instantly share code, notes, and snippets.

@holyketzer
Last active December 24, 2015 12:09
Show Gist options
  • Save holyketzer/6795669 to your computer and use it in GitHub Desktop.
Save holyketzer/6795669 to your computer and use it in GitHub Desktop.
def res(n)
if n==1
1
elsif n==2
2
else
res(n-1)+res(n-2)
end
end
def res(n)
n<3 ? n : res(n-1) + res(n-2)
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment