blob: 8c3cd760c96a416f68d624476e20fc75c177fb69 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
#!/usr/bin/node
function gcd2(a, b) {
return b == 0 ? a : gcd2(b, a % b);
}
// Don't use parseInt() itself in map() - it used to have 2 arguments
var nums = process.argv.map(
function(s) {return parseInt(s)}
).filter( // It will not work if this script or node itself is named as number ;-)
function(t) {return !isNaN(t)}
);
if (nums.length > 0) {
var GCD = nums.reduce(gcd2); // Yeah, we could use lambda here
console.log(GCD);
}
|