Skip to content

Instantly share code, notes, and snippets.

@MinimumViablePerson
Created December 31, 2019 12:03
Show Gist options
  • Save MinimumViablePerson/af76ba95ca3c8fdff16f9e62de821ba6 to your computer and use it in GitHub Desktop.
Save MinimumViablePerson/af76ba95ca3c8fdff16f9e62de821ba6 to your computer and use it in GitHub Desktop.
Recursion from Scratch - factorial evaluation
factorial(4)
4 * factorial(3)
4 * 3 * factorial(2)
4 * 3 * 2 * factorial(1)
4 * 3 * 2 * 1 * factorial(0)
4 * 3 * 2 * 1 * 1
24
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment