2 lines
70 B
Groovy
2 lines
70 B
Groovy
def rFact
|
|
rFact = { (it > 1) ? it * rFact(it - 1) : 1 as BigInteger }
|
def rFact
|
|
rFact = { (it > 1) ? it * rFact(it - 1) : 1 as BigInteger }
|