From d0992efd24bfc17a029362cecdc4800dbecaec3c Mon Sep 17 00:00:00 2001 From: Mark <53903062+andemark@users.noreply.github.com> Date: Mon, 13 Mar 2023 23:59:52 +0000 Subject: Challenge 208 Solutions (Raku) --- challenge-208/mark-anderson/raku/ch-1.raku | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/challenge-208/mark-anderson/raku/ch-1.raku b/challenge-208/mark-anderson/raku/ch-1.raku index d28af6fc98..f3f080ea2e 100644 --- a/challenge-208/mark-anderson/raku/ch-1.raku +++ b/challenge-208/mark-anderson/raku/ch-1.raku @@ -1,13 +1,13 @@ #!/usr/bin/env raku use Test; -is-deeply(min-index-sum(, ), ("Perl", "Raku"), "Example 1"); +is-deeply min-index-sum(, ), ("Perl", "Raku"), "Example 1"; -is-deeply(min-index-sum(, ), (), "Example 2"); +is-deeply min-index-sum(, ), (), "Example 2"; -is-deeply(min-index-sum(, ), ("A",), "Example 3"); +is-deeply min-index-sum(, ), ("A",), "Example 3"; -is-deeply(min-index-sum(, +is-deeply min-index-sum(, , , , @@ -16,9 +16,9 @@ is-deeply(min-index-sum(, , , , - ), ("V",), "10 X 25"); + ), ("V",), "10 X 25"; -is-deeply(min-index-sum(, +is-deeply min-index-sum(, , , , @@ -42,7 +42,7 @@ is-deeply(min-index-sum(, , , , - ), ("D", "E", "W"), "25 X 25"); + ), ("D", "E", "W"), "25 X 25"; sub min-index-sum(+$a) { -- cgit