aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--challenge-218/mark-anderson/raku/ch-2.raku8
1 files changed, 4 insertions, 4 deletions
diff --git a/challenge-218/mark-anderson/raku/ch-2.raku b/challenge-218/mark-anderson/raku/ch-2.raku
index 3ddbaeed95..be35ccef75 100644
--- a/challenge-218/mark-anderson/raku/ch-2.raku
+++ b/challenge-218/mark-anderson/raku/ch-2.raku
@@ -3,9 +3,9 @@ use Test;
is matrix-score([0,0,1,1],
[1,0,1,0],
- [1,1,0,0]), 39;
+ [1,1,0,0]), 39;
-is matrix-score([0]), 1;
+is matrix-score([0]), 1;
is matrix-score([1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1],
[0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0],
@@ -25,7 +25,7 @@ is matrix-score([1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1],
[0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0],
[0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0],
[0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0],
- [1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1]), 2246857;
+ [1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1]), 2246857;
is matrix-score([0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],
[1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1],
@@ -45,7 +45,7 @@ is matrix-score([0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],
[1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,1],
[1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1],
[1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1],
- [0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]), 2246857;
+ [0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]), 2246857;
is matrix-score([1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],
[1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],