Factorial Generator — LeetCode 2803 Python Solution

EasyLeetCode PremiumJavaScript
Problem
#2803
Reading time
2 min

The problem

Write a generator function that takes an integer n as an argument and returns a generator object which yields the factorial sequence. The factorial sequence is defined by the relation n!

Example

Input
n = 5
Output
[1,2,6,24,120]
Explanation
const gen = factorial(5)

Complexity

MeasureComplexity
TimeO(n)
SpaceO(1) to O(n) auxiliary

Related problems

Frequently asked questions

How hard is LeetCode 2803. Factorial Generator?
LeetCode 2803. Factorial Generator is rated Easy on LeetCode.
What topics does LeetCode 2803. Factorial Generator cover?
LeetCode 2803. Factorial Generator is tagged JavaScript on LeetCode.
Is LeetCode 2803. Factorial Generator a premium problem?
Yes. LeetCode 2803. Factorial Generator is a LeetCode Premium problem, so the full statement and test cases require a paid LeetCode subscription.

Stuck on problems like this in a live interview?

Stealth Interview is a desktop app for macOS and Windows. It reads the problem off your screen and returns a working solution with a step-by-step explanation and its time and space complexity — invisible to screen sharing.

Get Stealth Interview