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.
Same thing happened to me. The example tests didn't have negative numbers, but the random numbers all have negative numbers. So just have to account for negatives.
You didn't provide any solution here. Please paste your solution in the solution link, then maybe we can help
use str.upper & str.lower will solve Ur Problem
I tried a few solutions and they worked fine. I don't understand your problrm:-(
Same here...
Same here! very weird
Actually, your code is failing on
abcdeaB
which should return 2 (["a", "b"]) but your code is returning 1 (["a"]). This is because you need to take in the uppercase and the lowercase alphanumerical character being the same - the casing shouldn't matter.Weird!-)