Skip to content

Instantly share code, notes, and snippets.

@schweigert
Created July 29, 2017 15:49
Show Gist options
  • Select an option

  • Save schweigert/76d70a5ead831525877d8e480c62f59f to your computer and use it in GitHub Desktop.

Select an option

Save schweigert/76d70a5ead831525877d8e480c62f59f to your computer and use it in GitHub Desktop.
def fat n
return 1 if n == 0
return n*fat(n-1)
end
def sfat n
return 1 if n == 0
return fat(n)*sfat(n-1)
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment