aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--challenge-141/mark-anderson/raku/ch-1.raku4
1 files changed, 2 insertions, 2 deletions
diff --git a/challenge-141/mark-anderson/raku/ch-1.raku b/challenge-141/mark-anderson/raku/ch-1.raku
index f5547da629..5a65a0f2e3 100644
--- a/challenge-141/mark-anderson/raku/ch-1.raku
+++ b/challenge-141/mark-anderson/raku/ch-1.raku
@@ -8,9 +8,9 @@ is-deeply number-divisors(8)[^10],
(24, 30, 40, 42, 54, 56, 66, 70, 78, 88), 'example 1';
is-deeply number-divisors(8)[^10000].tail(5),
- (45626, 45627, 45638, 45642, 45646), 'race ftw!';
+ (45626, 45627, 45638, 45642, 45646), 'hyper ftw!';
sub number-divisors(\n)
{
- (^Inf).race.grep({ divisors($_) == n });
+ (^Inf).hyper.grep({ divisors($_) == n });
}