diff options
| author | Mark A <andemark@a-iot1t.uch.ad.pvt> | 2021-02-28 08:42:28 -0700 |
|---|---|---|
| committer | Mark A <andemark@a-iot1t.uch.ad.pvt> | 2021-02-28 08:42:28 -0700 |
| commit | e6e11f457d8e9b5615715722ac6e3bcf1f23ca79 (patch) | |
| tree | d4f7d0501ae8669fb66b94060d7d9a1288910598 | |
| parent | d5b109ee633933655f1f8c015a1d074ca21662c6 (diff) | |
| download | perlweeklychallenge-club-e6e11f457d8e9b5615715722ac6e3bcf1f23ca79.tar.gz perlweeklychallenge-club-e6e11f457d8e9b5615715722ac6e3bcf1f23ca79.tar.bz2 perlweeklychallenge-club-e6e11f457d8e9b5615715722ac6e3bcf1f23ca79.zip | |
minor touch-up to ch-1.raku
| -rw-r--r-- | challenge-101/mark-anderson/raku/ch-1.raku | 2 |
1 files changed, 1 insertions, 1 deletions
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 |
