aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJörg Sommrey <28217714+jo-37@users.noreply.github.com>2023-04-30 21:20:03 +0200
committerJörg Sommrey <28217714+jo-37@users.noreply.github.com>2023-05-01 22:10:02 +0200
commitdd95a52513c3e127588be0a077347ad8cd9f9882 (patch)
tree9de3435e78df8527cad847d738dc313005ab538b
parent6cc2e38f43011f65d7deaf1e03cf55e4306a53e5 (diff)
downloadperlweeklychallenge-club-dd95a52513c3e127588be0a077347ad8cd9f9882.tar.gz
perlweeklychallenge-club-dd95a52513c3e127588be0a077347ad8cd9f9882.tar.bz2
perlweeklychallenge-club-dd95a52513c3e127588be0a077347ad8cd9f9882.zip
Challenge 145 task 1
-rwxr-xr-xchallenge-145/jo-37/perl/ch-1.pl55
1 files changed, 55 insertions, 0 deletions
diff --git a/challenge-145/jo-37/perl/ch-1.pl b/challenge-145/jo-37/perl/ch-1.pl
new file mode 100755
index 0000000000..220093fa67
--- /dev/null
+++ b/challenge-145/jo-37/perl/ch-1.pl
@@ -0,0 +1,55 @@
+#!/usr/bin/perl -s
+
+use v5.24;
+use Test2::V0 '!float';
+use PDL;
+use experimental 'signatures';
+
+our ($tests, $examples);
+
+run_tests() if $tests || $examples; # does not return
+
+die <<EOS unless @ARGV == 2;
+usage: $0 [-examples] [-tests] [X Y]
+
+-examples
+ run the examples from the challenge
+
+-tests
+ run some tests
+
+X Y
+ two vectors in any representation as accepted by the PDL
+ constructor, e.g. x1,x2,...
+
+EOS
+
+
+### Input and Output
+
+say dot_product(@ARGV);
+
+
+### Implementation
+
+sub dot_product ($x, $y) {
+ (pdl($x) x pdl($y)->dummy(0))->sclr;
+}
+
+
+### Examples and tests
+
+sub run_tests {
+ SKIP: {
+ skip "examples" unless $examples;
+
+ is dot_product([1, 2, 3], [4, 5, 6]), 32, 'example';
+ }
+
+ SKIP: {
+ skip "tests" unless $tests;
+ }
+
+ done_testing;
+ exit;
+}