https://github.com/daidai21/self.lib/tree/master/reuse/Python3.x/Algorithm/NumberTheory ```py fact = lambda n: n * fact(n - 1) if n >= 1 else 1 ```