Hello!
I’ve coded the solution for scrabble, and it passes all the tests, when I run them one by one, manually.
However, it fails two latest tests in validation.
Also, please write a note in the game description that each letter in the word is counted once. I took time for me (rookie in scrabble) to figure it out.
1 Like
It’s usually not a bug : validation tests are similar to “manual” tests, but different (so you can’t write a very specific solution for each test and pass validation). Maybe your code isn’t performant enough and validation tests have a bigger “large dictionary” than manual ones, maybe your program doesn’t account for every case and a specific bad case happens only on validation…