aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--challenge-270/mark-anderson/raku/ch-1.raku2
1 files changed, 1 insertions, 1 deletions
diff --git a/challenge-270/mark-anderson/raku/ch-1.raku b/challenge-270/mark-anderson/raku/ch-1.raku
index c686670909..c00e722b4f 100644
--- a/challenge-270/mark-anderson/raku/ch-1.raku
+++ b/challenge-270/mark-anderson/raku/ch-1.raku
@@ -16,7 +16,7 @@ is special-positions([
sub special-positions(@m)
{
my $b = bag @m>>.grep(1, :k);
- + $b.values.grep(1)
+ + $b.values.grep(1)
}
# sub special-positions(@m)