summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorIgor Pashev <pashev.igor@gmail.com>2011-07-05 01:08:55 +0400
committerIgor Pashev <pashev.igor@gmail.com>2011-07-05 01:08:55 +0400
commit95eaf22587c148a14f7fdd2455de99881a353884 (patch)
treec273ceacf11b4a864162aa2d8539f6e12f2f7137
parent270050462a570dfa1a21fec39007dc1cb81acb91 (diff)
downloadgcd-95eaf22587c148a14f7fdd2455de99881a353884.tar.gz
Added Ruby
-rwxr-xr-xgcd.rb17
1 files changed, 17 insertions, 0 deletions
diff --git a/gcd.rb b/gcd.rb
new file mode 100755
index 0000000..0eefe8a
--- /dev/null
+++ b/gcd.rb
@@ -0,0 +1,17 @@
+#!/usr/bin/env ruby
+
+def gcd2 a, b
+ if b == 0
+ a
+ else
+ gcd2 b, a % b
+ end
+end
+
+# http://railspikes.com/2008/8/11/understanding-map-and-reduce
+def gcdn ns
+ ns.reduce{ |a, b| gcd2 a, b }
+end
+
+puts gcdn ARGV.collect{|s| s.to_i}
+