Skip to content

Instantly share code, notes, and snippets.

@aajjbb
Created June 16, 2017 21:54
Show Gist options
  • Save aajjbb/1571eea23a62562d209819484b3d8ae3 to your computer and use it in GitHub Desktop.
Save aajjbb/1571eea23a62562d209819484b3d8ae3 to your computer and use it in GitHub Desktop.
long long fat(int n, int r) {
if (n == 1) {
return 1;
} else if (r == 0) {
return 0;
} else {
return fat(n, r - 1) + fat(n - 1, n - 1);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment