• + 0 comments

    Python :

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