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.
not a suggestion
I see several issues with your code:
tested you code and it returned False,but it gave me one i instead two (i,I)
i and its count 1
s and its count 2
False
i would converted the input string into either lowercase or upperase and then do the count ( in this test the letter case does't matter)
also, you only check one condition --> if chars.islower(), so the code will miss (upper case I)
i have a doubt on this test case
isIsogram
this should return false, since there are repeating letter (s)
but it fails, dont know why