Example 1: The Factorial of a Number
Recursively compute the factorial of a number.
We'll cover the following
This section covers some common examples of recursion. Go through them, one by one, to get a firm grasp on recursion.
The factorial of a number
The factorial of a number, , is the product of all the integers from 1 to . It is denoted as: .
For example:
💡 Note: The factorial of both and is .
Let’s design a recursive approach to calculate the factorial.
Get hands-on with 1400+ tech skills courses.