diff options
| author | Mark <53903062+andemark@users.noreply.github.com> | 2023-03-06 10:33:24 +0000 |
|---|---|---|
| committer | Mark <53903062+andemark@users.noreply.github.com> | 2023-03-06 10:33:24 +0000 |
| commit | 2bce548e7e0cb6afa22b65a272bb1a455f3b4022 (patch) | |
| tree | e415c07079588ec1233117cdd37eb3c0661a69f7 | |
| parent | 299ccd70e466a89c89980e77d01abcd19e0cedd8 (diff) | |
| download | perlweeklychallenge-club-2bce548e7e0cb6afa22b65a272bb1a455f3b4022.tar.gz perlweeklychallenge-club-2bce548e7e0cb6afa22b65a272bb1a455f3b4022.tar.bz2 perlweeklychallenge-club-2bce548e7e0cb6afa22b65a272bb1a455f3b4022.zip | |
Challenge 207 Solutions (Raku)
| -rw-r--r-- | challenge-207/mark-anderson/raku/ch-1.raku | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/challenge-207/mark-anderson/raku/ch-1.raku b/challenge-207/mark-anderson/raku/ch-1.raku index d226573ccc..667171e7db 100644 --- a/challenge-207/mark-anderson/raku/ch-1.raku +++ b/challenge-207/mark-anderson/raku/ch-1.raku @@ -7,5 +7,5 @@ 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 }) } |
