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.
Hey, I wrote this Kata in Python, through with everything. Result is an appended list of anagram words, not a sorted one. However, I used the method 'sorted(word) and 'sorted(words[i])' to exluded the words that are not anagram. Hope it helps, thanks
I keep getting an error 'results.sort() is not a function' even though I haven't used this anywhere in my code. Anyone know why I would be getting this when I haven't used any sorting functionality? My code uses a hash table.