Skip to content

Instantly share code, notes, and snippets.

@sarpeedo
Last active March 28, 2017 20:37
Show Gist options
  • Save sarpeedo/3ea5529ccdfde92ce54b99523b58eb50 to your computer and use it in GitHub Desktop.
Save sarpeedo/3ea5529ccdfde92ce54b99523b58eb50 to your computer and use it in GitHub Desktop.
public int factorial(n) {
if (n == 1)
return 1;
else
`return n * factorial(n - 1);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment