azamtoiri / Algorithms

Imported name is not used anywhere in the module PY-W2000
Anti-pattern
Major
a year agoa year old
 3n! = (n-0) * (n-1) * (n-2) * (n-3) * (n-4)
 4120 = (5) * (4) * (3) * (2) * (1)
 5"""
 6import time 7
 8
 9def fac0(n: int) -> int: