mirror of
https://github.com/TheAlgorithms/Python.git
synced 2024-11-24 05:21:09 +00:00
99ebd1a018
* Create factorial_iterative.py * Update factorial_iterative.py * Update factorial_iterative.py * Update factorial_iterative.py * print(f"factorial{n} is {factorial(n)}") * Update factorial_recursive.py Co-authored-by: Christian Clauss <cclauss@me.com>
29 lines
816 B
Python
29 lines
816 B
Python
def factorial(n: int) -> int:
|
|
"""
|
|
Calculate the factorial of a positive integer
|
|
https://en.wikipedia.org/wiki/Factorial
|
|
|
|
>>> import math
|
|
>>> all(factorial(i) == math.factorial(i) for i in range(20))
|
|
True
|
|
>>> factorial(0.1)
|
|
Traceback (most recent call last):
|
|
...
|
|
ValueError: factorial() only accepts integral values
|
|
>>> factorial(-1)
|
|
Traceback (most recent call last):
|
|
...
|
|
ValueError: factorial() not defined for negative values
|
|
"""
|
|
if not isinstance(n, int):
|
|
raise ValueError("factorial() only accepts integral values")
|
|
if n < 0:
|
|
raise ValueError("factorial() not defined for negative values")
|
|
return 1 if n == 0 or n == 1 else n * factorial(n - 1)
|
|
|
|
|
|
if __name__ == "__main__":
|
|
import doctest
|
|
|
|
doctest.testmod()
|