aboutsummaryrefslogtreecommitdiff
path: root/challenge-114/abigail/perl/ch-2.pl
diff options
context:
space:
mode:
Diffstat (limited to 'challenge-114/abigail/perl/ch-2.pl')
-rw-r--r--challenge-114/abigail/perl/ch-2.pl27
1 files changed, 27 insertions, 0 deletions
diff --git a/challenge-114/abigail/perl/ch-2.pl b/challenge-114/abigail/perl/ch-2.pl
new file mode 100644
index 0000000000..61e2ddf1ea
--- /dev/null
+++ b/challenge-114/abigail/perl/ch-2.pl
@@ -0,0 +1,27 @@
+#!/opt/perl/bin/perl
+
+use 5.032;
+
+use strict;
+use warnings;
+no warnings 'syntax';
+
+use experimental 'signatures';
+use experimental 'lexical_subs';
+
+#
+# See ../README.md
+#
+
+#
+# Run as: perl ch-2.pl < input-file
+#
+
+#
+# For a description of the algorithm, see
+# https://abigail.github.io/HTML/Perl-Weekly-Challenge/week-114-2.html
+#
+
+say oct sprintf ("0b0%b" => $_) =~ s {01(1*)(0*)$} {10$2$1}r while <>;
+
+__END__