Loading collection data...
Collections are a way for you to organize kata so that you can create your own training routines. Every collection you create is public and automatically sharable with other warriors. After you have added a few kata to a collection you and others can train on the kata contained within the collection.
Get started now by creating a new collection.
What you need to do:
Ok, so second problem was the only one. You are not ignoring non-alphanumeric characters.
When the original and test string have different number of spaces(or other punctuation), your function returns false instead of true.
An anagram does not need to conserve whitespace, punctuation and the like.
You did use the "mark as spoiler" on this comment right?
You can use the same on your solution and only users who have already solved this problem will be able to see it.
Based on the tests you fail, my guess is your solution is case sensitive instead of insensitive and does not get rid of non-alphanumeric characters.
If that's not the case, I can't really say anything without seeing your solution.