Visit complete Computer Science roadmap
Computer Science Topic

Factorial

Factorial

Factorial complexity algorithms have a runtime of O(n!). This is the worst case scenario for an algorithm. Factorial complexity algorithms are very inefficient and should be avoided.

def factorial(n):
    if n == 0:
        return 1
    else:
        return n * factorial(n-1)

More Topics

Explore related content

View All Topics
Loved by 100K+ Developers

Start Your Learning
Journey Today

Join thousands of developers who are leveling up their skills with structured roadmaps and expert guidance

No credit card required
Always free
Track your progress