aboutsummaryrefslogtreecommitdiff
path: root/challenge-324
diff options
context:
space:
mode:
authorrir <rirans@comcast.net>2025-06-10 09:57:50 -0400
committerrir <rirans@comcast.net>2025-06-10 09:59:10 -0400
commitfbc4c18079b8a34ffcea7e01c295972e84fd51ed (patch)
tree7fafaec7baf48851f2395483950f331afea76141 /challenge-324
parenta9f099b09f5cd637d39b54abbd42dd0d49fe497d (diff)
downloadperlweeklychallenge-club-fbc4c18079b8a34ffcea7e01c295972e84fd51ed.tar.gz
perlweeklychallenge-club-fbc4c18079b8a34ffcea7e01c295972e84fd51ed.tar.bz2
perlweeklychallenge-club-fbc4c18079b8a34ffcea7e01c295972e84fd51ed.zip
Delelte undef'ed type and unneeded 'sum'
Diffstat (limited to 'challenge-324')
-rw-r--r--challenge-324/0rir/raku/ch-2.raku2
1 files changed, 1 insertions, 1 deletions
diff --git a/challenge-324/0rir/raku/ch-2.raku b/challenge-324/0rir/raku/ch-2.raku
index 918b5d228d..c56d81f5f2 100644
--- a/challenge-324/0rir/raku/ch-2.raku
+++ b/challenge-324/0rir/raku/ch-2.raku
@@ -51,7 +51,7 @@ my @Test =
plan +@Test รท 2;
sub task( @a where { **.are(Int) or ** ~~ Empty } -->Int:D) {
- sum do for @a.combinations { sum [+^] $_ }
+sum do for @a.combinations { [+^] $_ }
}
for @Test -> @in, $exp {