summaryrefslogtreecommitdiff
path: root/ruby_1_9_3/benchmark/bm_app_tak.rb
diff options
context:
space:
mode:
Diffstat (limited to 'ruby_1_9_3/benchmark/bm_app_tak.rb')
-rw-r--r--ruby_1_9_3/benchmark/bm_app_tak.rb13
1 files changed, 0 insertions, 13 deletions
diff --git a/ruby_1_9_3/benchmark/bm_app_tak.rb b/ruby_1_9_3/benchmark/bm_app_tak.rb
deleted file mode 100644
index efe5380f4e..0000000000
--- a/ruby_1_9_3/benchmark/bm_app_tak.rb
+++ /dev/null
@@ -1,13 +0,0 @@
-
-def tak x, y, z
- unless y < x
- z
- else
- tak( tak(x-1, y, z),
- tak(y-1, z, x),
- tak(z-1, x, y))
- end
-end
-
-tak(18, 9, 0)
-