Create a function that takes an integer n and returns the factorial of factorials. See below examples for a better understanding:
n
factFact(4) ➞ 288 // 4! * 3! * 2! * 1! = 288 factFact(5) ➞ 34560 factFact(6) ➞ 24883200
N/A