mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
6bb3618f28
Python's range stop right before n, which means factL never returns the correct result. Closes: https://github.com/ruby/ruby/pull/1982
18 lines
212 B
Python
18 lines
212 B
Python
#import sys
|
|
#sys.setrecursionlimit(1000)
|
|
|
|
def factL(n):
|
|
r = 1
|
|
for x in range(2, n+1):
|
|
r *= x
|
|
return r
|
|
|
|
def factR(n):
|
|
if n < 2:
|
|
return 1
|
|
else:
|
|
return n * factR(n-1)
|
|
|
|
for i in range(10000):
|
|
factR(100)
|
|
|