Skip to content

Instantly share code, notes, and snippets.

@montyr75
Created November 24, 2013 21:39
Show Gist options
  • Save montyr75/7632735 to your computer and use it in GitHub Desktop.
Save montyr75/7632735 to your computer and use it in GitHub Desktop.
Dart factorial function.
int factorial(int number) {
int factorialRange(int bottom, int top) {
if (top == bottom) {
return bottom;
}
return top * factorialRange(bottom, top - 1);
}
return factorialRange(1, number);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment