aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorScimon <simon.proctor@gmail.com>2025-06-24 09:06:22 +0100
committerScimon <simon.proctor@gmail.com>2025-06-24 09:06:22 +0100
commit449ec70850782bdab0658eddddae1eec6a7102f0 (patch)
treed2ddf862a5a2129a07ddca66f7d9ebc8d7788beb
parent2cdbccd6a0f4c9a48af6e00dc218e1c26df64435 (diff)
downloadperlweeklychallenge-club-449ec70850782bdab0658eddddae1eec6a7102f0.tar.gz
perlweeklychallenge-club-449ec70850782bdab0658eddddae1eec6a7102f0.tar.bz2
perlweeklychallenge-club-449ec70850782bdab0658eddddae1eec6a7102f0.zip
Small change to documentation strings in part 2
-rwxr-xr-xchallenge-327/simon-proctor/raku/ch-2.raku2
1 files changed, 1 insertions, 1 deletions
diff --git a/challenge-327/simon-proctor/raku/ch-2.raku b/challenge-327/simon-proctor/raku/ch-2.raku
index 807b068e3a..43d818647a 100755
--- a/challenge-327/simon-proctor/raku/ch-2.raku
+++ b/challenge-327/simon-proctor/raku/ch-2.raku
@@ -4,7 +4,7 @@
a list of pairs which share the minimum absolute
difference found in the list)
sub MAIN (
- *@a where @a.all ~~ Int && @a.unique.elems == @a.elems # A list of distinct integers
+ *@a where @a.all ~~ Int && @a.unique.elems == @a.elems #= A list of distinct integers
) {
my @ret = [];
my $mad = Inf;