summaryrefslogtreecommitdiff
path: root/ruby_2_2/benchmark/other-lang/fact.py
diff options
context:
space:
mode:
Diffstat (limited to 'ruby_2_2/benchmark/other-lang/fact.py')
-rw-r--r--ruby_2_2/benchmark/other-lang/fact.py18
1 files changed, 0 insertions, 18 deletions
diff --git a/ruby_2_2/benchmark/other-lang/fact.py b/ruby_2_2/benchmark/other-lang/fact.py
deleted file mode 100644
index 01593965d9..0000000000
--- a/ruby_2_2/benchmark/other-lang/fact.py
+++ /dev/null
@@ -1,18 +0,0 @@
-#import sys
-#sys.setrecursionlimit(1000)
-
-def factL(n):
- r = 1
- for x in range(2, n):
- 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)
-