diff options
| author | Mark <53903062+andemark@users.noreply.github.com> | 2024-06-11 01:18:40 +0000 |
|---|---|---|
| committer | Mark <53903062+andemark@users.noreply.github.com> | 2024-06-11 01:18:40 +0000 |
| commit | 75aa0f2a5cc9e834db897e64e97ab7a0fb2d4943 (patch) | |
| tree | dfab80a01316eec402e4eeb14ba6ad2da4903f1e | |
| parent | 311ed781407135d382d33d69e1e0671078ade91d (diff) | |
| download | perlweeklychallenge-club-75aa0f2a5cc9e834db897e64e97ab7a0fb2d4943.tar.gz perlweeklychallenge-club-75aa0f2a5cc9e834db897e64e97ab7a0fb2d4943.tar.bz2 perlweeklychallenge-club-75aa0f2a5cc9e834db897e64e97ab7a0fb2d4943.zip | |
Challenge 273 Solutions (Raku)
| -rw-r--r-- | challenge-273/mark-anderson/raku/ch-2.raku | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/challenge-273/mark-anderson/raku/ch-2.raku b/challenge-273/mark-anderson/raku/ch-2.raku index 65221a6570..d769f0bb69 100644 --- a/challenge-273/mark-anderson/raku/ch-2.raku +++ b/challenge-273/mark-anderson/raku/ch-2.raku @@ -29,8 +29,9 @@ nok b-after-a-indices("aaabxyzbcade"); nok b-after-a-indices("aaabxyzcde"); # Note: I may have misunderstood the problem. I thought it was to check -# for a 'b' and then a 'b' following the first 'b' and no 'a' following -# the first 'b' 🤷 +# for a 'b' and then a 'b' after the first 'b' and no 'a' after the first +# 'b' but it looks like others have checked for a 'b' and no 'a' after +# that first 'b' 🤷 sub b-after-a($str) { |
