diff options
| author | Jörg Sommrey <28217714+jo-37@users.noreply.github.com> | 2023-12-22 11:53:45 +0100 |
|---|---|---|
| committer | Jörg Sommrey <28217714+jo-37@users.noreply.github.com> | 2023-12-22 14:35:42 +0100 |
| commit | be86313559dad2edb330caed8febf8382f1128ed (patch) | |
| tree | c116155f12275b5e1c99ceba6c803f8d7dd9f73b | |
| parent | 2607ad8577bd08ee0187449883524a4c0f7a66cc (diff) | |
| download | perlweeklychallenge-club-be86313559dad2edb330caed8febf8382f1128ed.tar.gz perlweeklychallenge-club-be86313559dad2edb330caed8febf8382f1128ed.tar.bz2 perlweeklychallenge-club-be86313559dad2edb330caed8febf8382f1128ed.zip | |
Solution to task 1
| -rwxr-xr-x | challenge-248/jo-37/perl/ch-1.pl | 65 |
1 files changed, 65 insertions, 0 deletions
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; +} |
