diff options
| -rw-r--r-- | challenge-207/mark-anderson/raku/ch-1.raku | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/challenge-207/mark-anderson/raku/ch-1.raku b/challenge-207/mark-anderson/raku/ch-1.raku index de15caf680..d226573ccc 100644 --- a/challenge-207/mark-anderson/raku/ch-1.raku +++ b/challenge-207/mark-anderson/raku/ch-1.raku @@ -1,11 +1,11 @@ #!/usr/bin/env raku use Test; -is-deeply keyboard-word(< Hello Alaska Dad Peace >), < Alaska Dad >; -is-deeply keyboard-word(< OMG Bye >), < >; -is-deeply keyboard-word(< BBC CNN OAN >), < BBC CNN >; +is-deeply keyboard-word(< Hello Alaska Dad Peace >), < Alaska Dad >; +is-deeply keyboard-word(< OMG Bye >), < >; +is-deeply keyboard-word(< BBC CNN OAN >), < BBC CNN >; sub keyboard-word(@a) { - @a.grep({ .lc.comb.cache (<=) any < qwertyuiop asdfghjkl zxcvbnm >>>.comb }) + @a.grep({ .lc.comb.cache (<) any < qwertyuiop asdfghjkl zxcvbnm >>>.comb }) } |
