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.
Well holy crap. In all my years of screwing up javascript, that's the first time I've heard of sort() being so unstable. Sure enough, it was an easy fix. Thanks a bunch!
It's a problem with your code, you're misusing sort. Use a better suited method for that. Sort is not stable in javascript.
Try your code in repl.it and you'll see it also fails there.
If you run the code that I've provided, you'll see that Kata is incorrectly showing something didn't pass, when it in fact DID pass. That's what I'm getting at there. Try my code in your browser console and it will pass 100% of the time. Try the exact same code in Kata, and it fails. This one isn't resolved.
Try:
isIsoGram("bncwxyfvesoriXljhmzputkgdaq");
Codewars returns: Expected: false, instead got: true
Console Returns : false
Not a kata issue:
It doesn't rerun them when you submit.
Running sample tests are simply examples, to get the full test suite click 'attempt'.
This comment is hidden because it contains spoiler information about the solution