aboutsummaryrefslogtreecommitdiff
path: root/challenge-089/ash/javascript/ch-1.js
diff options
context:
space:
mode:
authorMohammad S Anwar <Mohammad.Anwar@yahoo.com>2020-12-06 11:28:41 +0000
committerGitHub <noreply@github.com>2020-12-06 11:28:41 +0000
commite1fa520a5aee78c1d8c6daaaa232216183047ec8 (patch)
tree7f490b425e24c13a87a34a9a5c15b8b3ae2d142b /challenge-089/ash/javascript/ch-1.js
parent37f7a8fdda722a8df258f11676317dfa9b4eabba (diff)
parentb0f91205a62dd4131e60d6ce1a8947cfe04b76a2 (diff)
downloadperlweeklychallenge-club-e1fa520a5aee78c1d8c6daaaa232216183047ec8.tar.gz
perlweeklychallenge-club-e1fa520a5aee78c1d8c6daaaa232216183047ec8.tar.bz2
perlweeklychallenge-club-e1fa520a5aee78c1d8c6daaaa232216183047ec8.zip
Merge pull request #2915 from ash/master
Week 89 Task 1 and an Advent blog post
Diffstat (limited to 'challenge-089/ash/javascript/ch-1.js')
-rw-r--r--challenge-089/ash/javascript/ch-1.js24
1 files changed, 24 insertions, 0 deletions
diff --git a/challenge-089/ash/javascript/ch-1.js b/challenge-089/ash/javascript/ch-1.js
new file mode 100644
index 0000000000..c090b44808
--- /dev/null
+++ b/challenge-089/ash/javascript/ch-1.js
@@ -0,0 +1,24 @@
+// Test run:
+// $ node ch-1.js 100
+// 13015
+
+let n = process.argv.length == 3 ? process.argv[2] : 3;
+
+let s = 0;
+for (let x = 1; x <= n; x++) {
+ for (let y = x + 1; y <= n; y++) {
+ s += gcd(x, y);
+ }
+}
+
+console.log(s);
+
+function gcd(a, b) {
+ while (b) {
+ let t = b;
+ b = a % b;
+ a = t;
+ }
+
+ return a;
+}