From 929982ecea67dc60d4e555f8bacc72dd291b917b Mon Sep 17 00:00:00 2001 From: k0kubun Date: Sun, 8 Jul 2018 17:36:26 +0000 Subject: benchmark/*.yml: convert from benchmark/bm_*.rb git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@63900 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- benchmark/bm_app_answer.rb | 15 --------------- 1 file changed, 15 deletions(-) delete mode 100644 benchmark/bm_app_answer.rb (limited to 'benchmark/bm_app_answer.rb') diff --git a/benchmark/bm_app_answer.rb b/benchmark/bm_app_answer.rb deleted file mode 100644 index 3cd8a8fd37..0000000000 --- a/benchmark/bm_app_answer.rb +++ /dev/null @@ -1,15 +0,0 @@ -def ack(m, n) - if m == 0 then - n + 1 - elsif n == 0 then - ack(m - 1, 1) - else - ack(m - 1, ack(m, n - 1)) - end -end - -def the_answer_to_life_the_universe_and_everything - (ack(3,7).to_s.split(//).inject(0){|s,x| s+x.to_i}.to_s + "2" ).to_i -end - -answer = the_answer_to_life_the_universe_and_everything -- cgit v1.2.3