aboutsummaryrefslogtreecommitdiff
path: root/challenge-084/abigail/node
diff options
context:
space:
mode:
authorAbigail <abigail@abigail.be>2020-10-28 00:48:51 +0100
committerAbigail <abigail@abigail.be>2020-10-28 00:48:51 +0100
commit381da505f3836ed937135b25ec7e8f79b842a914 (patch)
tree8f028e8ca6f424cb141b9cd8729f56e87bdbe7ba /challenge-084/abigail/node
parent830661b13c9446cde2ebcb368fe3a0a06905eb79 (diff)
downloadperlweeklychallenge-club-381da505f3836ed937135b25ec7e8f79b842a914.tar.gz
perlweeklychallenge-club-381da505f3836ed937135b25ec7e8f79b842a914.tar.bz2
perlweeklychallenge-club-381da505f3836ed937135b25ec7e8f79b842a914.zip
JavaScript solution for week 84, part 1.
Diffstat (limited to 'challenge-084/abigail/node')
-rw-r--r--challenge-084/abigail/node/ch-1.js59
1 files changed, 59 insertions, 0 deletions
diff --git a/challenge-084/abigail/node/ch-1.js b/challenge-084/abigail/node/ch-1.js
new file mode 100644
index 0000000000..1f21df9f44
--- /dev/null
+++ b/challenge-084/abigail/node/ch-1.js
@@ -0,0 +1,59 @@
+//
+// You are given an integer $N.
+//
+// Write a script to reverse the given integer and print the result.
+// Print 0 if the result doesn't fit in 32-bit signed integer.
+//
+// The number 2,147,483,647 is the maximum positive value for a 32-bit
+// signed binary integer in computing.
+//
+
+//
+// Note that the largest *positive* value which can fit in a
+// 32 bit integer is 2,147,483,647, but the largest *negative*
+// value is -2,147,483,648.
+//
+
+//
+// Create an interface to read from STDIN
+//
+const rl = require ('readline') . createInterface ({
+ input: process . stdin,
+});
+
+//
+// Read lines of input, calculate the result, and print it.
+//
+rl . on ('line', (line) => {
+ console . log (do_reverse (line));
+});
+
+
+function do_reverse (line) {
+ let sign = "";
+ //
+ // Strip off a leading hyphen; remember if we did so.
+ //
+ if (line . substring (0, 1) == "-") {
+ line = line . substring (1);
+ sign = "-";
+ }
+
+ //
+ // Reverse the digits.
+ //
+ let enil = sign + line . split ("") . reverse () . join ("");
+
+ //
+ // Turn the result into a bigint, so we can safely treat it
+ // as a number.
+ //
+ let result = BigInt (enil);
+
+ //
+ // If the result is too large (or too small), return 0.
+ // Else, return elin. Note that we should not return result;
+ // since result is a BigInt, printing it adds a trailing 'n'.
+ //
+ return result > 2147483647 || result < -2147483648 ? 0 : enil;
+}