diff options
| -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) { |
