aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJörg Sommrey <28217714+jo-37@users.noreply.github.com>2023-12-22 14:36:27 +0100
committerJörg Sommrey <28217714+jo-37@users.noreply.github.com>2023-12-22 14:36:27 +0100
commit94cb19c10e8935079522f875ae612b971814ac8c (patch)
tree4789e6a5e45054e076aadde5cf0e5e8c8f2b3a2f
parent2607ad8577bd08ee0187449883524a4c0f7a66cc (diff)
parent80e513fd115dfe276c6c2ebbbe325ac12d1e9e60 (diff)
downloadperlweeklychallenge-club-94cb19c10e8935079522f875ae612b971814ac8c.tar.gz
perlweeklychallenge-club-94cb19c10e8935079522f875ae612b971814ac8c.tar.bz2
perlweeklychallenge-club-94cb19c10e8935079522f875ae612b971814ac8c.zip
Solutions to challenge 248
-rw-r--r--challenge-248/jo-37/blog.txt1
-rwxr-xr-xchallenge-248/jo-37/perl/ch-1.pl65
-rwxr-xr-xchallenge-248/jo-37/perl/ch-2.pl69
3 files changed, 135 insertions, 0 deletions
diff --git a/challenge-248/jo-37/blog.txt b/challenge-248/jo-37/blog.txt
new file mode 100644
index 0000000000..1cba0eaabc
--- /dev/null
+++ b/challenge-248/jo-37/blog.txt
@@ -0,0 +1 @@
+https://github.sommrey.de/blog/pwc/challenge-248
diff --git a/challenge-248/jo-37/perl/ch-1.pl b/challenge-248/jo-37/perl/ch-1.pl
new file mode 100755
index 0000000000..43dd5d5a8f
--- /dev/null
+++ b/challenge-248/jo-37/perl/ch-1.pl
@@ -0,0 +1,65 @@
+#!/usr/bin/perl -s
+
+use v5.24;
+use Test2::V0 '!float';
+use PDL;
+use PDL::Char;
+
+our ($tests, $examples, $char);
+
+run_tests() if $tests || $examples; # does not return
+
+die <<EOS unless defined $char && @ARGV == 1;
+usage: $0 [-examples] [-tests] [-char=C S]
+
+-examples
+ run the examples from the challenge
+
+-tests
+ run some tests
+
+-char=C
+ find distances to character C within the given string S
+
+S
+ a string
+
+EOS
+
+
+### Input and Output
+
+say shortest_distance($char, shift);
+
+
+### Implementation
+
+sub shortest_distance {
+ my $c = PDL::Char->new(shift);
+ my $s = PDL::Char->new(shift);
+ my $p = which($s == $c)->long;
+ return if $p->isempty;
+
+ minover abs sequence(1, $s->dim(0)) - $p;
+}
+
+
+### Examples and tests
+
+sub run_tests {
+ SKIP: {
+ skip "examples" unless $examples;
+
+ is shortest_distance('e', 'loveleetcode')->unpdl,
+ [3,2,1,0,1,0,0,1,2,2,1,0], 'example 1';
+ is shortest_distance('b', 'aaab')->unpdl,
+ [3,2,1,0], 'example 2';
+ }
+
+ SKIP: {
+ skip "tests" unless $tests;
+ }
+
+ done_testing;
+ exit;
+}
diff --git a/challenge-248/jo-37/perl/ch-2.pl b/challenge-248/jo-37/perl/ch-2.pl
new file mode 100755
index 0000000000..ee94250365
--- /dev/null
+++ b/challenge-248/jo-37/perl/ch-2.pl
@@ -0,0 +1,69 @@
+#!/usr/bin/perl -s
+
+use v5.24;
+use Test2::V0 '!float';
+use PDL;
+use PDL::NiceSlice;
+
+our ($tests, $examples);
+
+run_tests() if $tests || $examples; # does not return
+
+die <<EOS unless @ARGV;
+usage: $0 [-examples] [-tests] [--] [M]
+
+-examples
+ run the examples from the challenge
+
+-tests
+ run some tests
+
+M
+ a matrix in any format as accepted by the PDL string constructor,
+ e.g. '1,0,0;0,1,0;0,0,1'
+
+EOS
+
+
+### Input and Output
+
+say submatrix_sum("@ARGV");
+
+
+### Implementation
+
+sub submatrix_sum {
+ my $m = pdl @_;
+
+ $m->range(ndcoords($m(1:,1:)), 2)->reorder(2, 3, 0, 1)
+ ->clump(2)->sumover;
+}
+
+
+### Examples and tests
+
+sub run_tests {
+ SKIP: {
+ skip "examples" unless $examples;
+
+ is submatrix_sum(
+ [1, 2, 3, 4],
+ [5, 6, 7, 8],
+ [9, 10, 11, 12])->unpdl,
+ [[14, 18, 22], [30, 34, 38]], 'example 1';
+
+ is submatrix_sum(
+ [1, 0, 0, 0],
+ [0, 1, 0, 0],
+ [0, 0, 1, 0],
+ [0, 0, 0, 1])->unpdl,
+ [[2, 1, 0], [1, 2, 1], [0, 1, 2]], 'example 2';
+ }
+
+ SKIP: {
+ skip "tests" unless $tests;
+ }
+
+ done_testing;
+ exit;
+}