From fcbf63e62c627deae76c1b8cb8c0876c536ed811 Mon Sep 17 00:00:00 2001 From: Jari Vetoniemi Date: Mon, 16 Mar 2020 18:49:26 +0900 Subject: Fresh start --- jni/ruby/benchmark/bm_app_tak.rb | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 jni/ruby/benchmark/bm_app_tak.rb (limited to 'jni/ruby/benchmark/bm_app_tak.rb') diff --git a/jni/ruby/benchmark/bm_app_tak.rb b/jni/ruby/benchmark/bm_app_tak.rb new file mode 100644 index 0000000..efe5380 --- /dev/null +++ b/jni/ruby/benchmark/bm_app_tak.rb @@ -0,0 +1,13 @@ + +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) + -- cgit v1.2.3