Ad
  • Default User Avatar

    Please add to test cases: strings that only partially contain correct dice notations and should return false. For example: "abc2d3+4", "4d6+8qwerty".

  • Default User Avatar

    Kata description states: "Valid passwords will only be alphanumeric characters."
    I have not found in description if _ symbol (underline) is allowed in passwords or should be excluded.
    Your tests do not cover this issue either.
    \w includes A-Z, a-z and 0-9 as well as underline. Some accepted solutions use \w token.
    Please modify description/tests.

  • Default User Avatar

    Although it's easy to figure out what has to be fixed, I'd prefer to see more informative description added. Good kata!