From e6e11f457d8e9b5615715722ac6e3bcf1f23ca79 Mon Sep 17 00:00:00 2001 From: Mark A Date: Sun, 28 Feb 2021 08:42:28 -0700 Subject: minor touch-up to ch-1.raku --- challenge-101/mark-anderson/raku/ch-1.raku | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/challenge-101/mark-anderson/raku/ch-1.raku b/challenge-101/mark-anderson/raku/ch-1.raku index e6a1830f8f..d7cc65eb0e 100644 --- a/challenge-101/mark-anderson/raku/ch-1.raku +++ b/challenge-101/mark-anderson/raku/ch-1.raku @@ -43,7 +43,7 @@ is-deeply pack-a-spiral(1..144), sub pack-a-spiral(@list is copy) { my $cols = +@list div (1..sqrt(@list).floor).first(@list %% *, :end); - my @matrix = @list.keys.rotor($cols).map(*.Array); + my @matrix = @list.keys.rotor($cols).map(*.Array); my @keys; while @matrix -- cgit