diff options
| author | Mark <53903062+andemark@users.noreply.github.com> | 2023-03-14 23:36:11 +0000 |
|---|---|---|
| committer | Mark <53903062+andemark@users.noreply.github.com> | 2023-03-14 23:36:11 +0000 |
| commit | f7ec28790793e89b81f22c0355e96e41403195ab (patch) | |
| tree | 0f14467536b33550caf4f7bfe6ff5536c914ae3b | |
| parent | 8e5c206909f60833316f94fd95e600e73850e983 (diff) | |
| download | perlweeklychallenge-club-f7ec28790793e89b81f22c0355e96e41403195ab.tar.gz perlweeklychallenge-club-f7ec28790793e89b81f22c0355e96e41403195ab.tar.bz2 perlweeklychallenge-club-f7ec28790793e89b81f22c0355e96e41403195ab.zip | |
Challenge 208 Solutions (Raku)
| -rw-r--r-- | challenge-208/mark-anderson/raku/ch-2.raku | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/challenge-208/mark-anderson/raku/ch-2.raku b/challenge-208/mark-anderson/raku/ch-2.raku index fa193e2cd0..c2c8ff76ec 100644 --- a/challenge-208/mark-anderson/raku/ch-2.raku +++ b/challenge-208/mark-anderson/raku/ch-2.raku @@ -9,6 +9,7 @@ is-deeply duplicate-and-missing(4,5,6,7,7,9), (7,8); is-deeply duplicate-and-missing(4,5,6,6,7,9), (6,8); is-deeply duplicate-and-missing(4,6,6,7,8,9), (6,5); is-deeply duplicate-and-missing(3,6,5,6,7,8), (6,4); +is-deeply duplicate-and-missing(3,4,5,6,7,3), (3,8); sub duplicate-and-missing(*@nums) { |
