Ad
  • Custom User Avatar

    This comment is hidden because it contains spoiler information about the solution

  • Custom User Avatar

    I think there is a wrong test in the random tests in Scala. According to the instructions in the field of 6 we should put as many * as the number of errors for that letter, but there is a failing test where the number of * is always on the field of 5 in the expected string:
    (I replaced the whitespace with dots)

    Actual: u..8.....********w..7.....*******x..14.....***z..11.....
    Expect: u..8.....********w..7.....*******x..14....***z..11....

    In the example above from number 14 the stars are on the field of 5.
    Here again from another run:

    Actual: u..7.....*******w..6.....******x..12.....****z..8.....
    Expect: u..7.....*******w..6.....******x..12....****z..8....

    In the description there is no sign of changing the position of the stars in the result string. Could you please check it?