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.
This comment is hidden because it contains spoiler information about the solution
Super kata
Lot of thanks
For a,b,c = 0,0,0 most "Best pract.." & "Clever" solutios (Go) will fail
Please add to tests:
contain_all_rots(
"£a", ["£a", "a£") -> true
Looks that most solutions in Golang will work only for ASCII characters.
Possibly need clarification in description regarding ASCII or non ASCII content...
e.g. len(str) returns number of bytes not chars. It may be used without problem in ...if len(str) == 0
but not as counter for string rotation
Wrong working with asian etc. languages
Agree with https://www.codewars.com/users/metalim - solution should work using runes
"...The prime numbers from 1 to 200 are: 2, 3, 5, 7, 11, 13, 17, 19, 23, 29, 31, 37, 41, 43, 47, 53, 59, 61, 67, 71, 73, 79, 83, 89, 97, 101, 103, 107, 109, 113, 127, 131, 137, 139, 149, 151, 157, 163, 167, 173, 179, 181, 191, 193, 197, 199...."
and answer 101,107 is right
I have the same problems with Go tests :-(
don't understand why it was marked as resolved