Skip to content

Instantly share code, notes, and snippets.

@Piyush-Chaudhary
Created December 16, 2022 07:58
Show Gist options
  • Save Piyush-Chaudhary/3caf38967c13ca01a3c9271419f1f2db to your computer and use it in GitHub Desktop.
Save Piyush-Chaudhary/3caf38967c13ca01a3c9271419f1f2db to your computer and use it in GitHub Desktop.
def fib(n)
if (n<=2)
return 1
else
return (fib(n-1)+fib(n-2))
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment