Skip to main content

1. Factorial (Easy)

This page is about how to solve factorial using recursive and iterative approaches.

Refer the factorial problem explanation here. This covers the following:

  • Solving Factorial iteratively vs recursively
  • Recursive tree of factorial
  • Time and Space complexity of factorial

Factorial Problem