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.
Your solution does not solve the problem. It's not just about counting the characters, it's also about checking if the corresponding characters are in the same locations thorough the string. In your example, the strings are not isomorphic because one string cannot be turned into the other by changing every occurrence of one letter to another letter:
Failed test with a = "ABCBACCBA" and b = "ABCBACCAB": True should equal False
Expected True