[Community Puzzle] anagram to break the code!

Coding Games and Programming Challenges to Code Better

Send your feedback or ask for help here!

Hi, my solution seems to pass every test case and validator except for validator 8. Do you have any idea what might cause this?

It’s difficult to say. If you want, you may share your code with me in private message, and I’ll take a look at it.

For those who fail Validator 8 (“val random words no sense”), try this custom case which may help with the debugging:

Input

reshapes
Ophrases , passerby? SSshapes! seesharp saphires

Output

3.1.4.8
3 Likes
  • The usage of a sentence is not entirely accurate because in normal cases, only ., ! and ? are used as sentence separators, and so there are more than 1 sentence in the given string.

  • Following should be in CONSTRAINTS section

    In the sentences, we can find only letters and the following punctuation marks: : . , ? !

  • Description does not mention that the search of anagrams should ignore case (case in-sensitive)

Updated the statement.

1 Like