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 means I'm less than a noob.
Thanks @Tabby_John!
You understood my question here, and you're absolutely right.
Now it makes sense.
Great! Thanks guys!
PS.: Forgot to mention I'm on Python 3.X
The tests should test for non-pangrams as well, as some of the presented codes return incorrect outputs if tested.
Well, I tested this one here and it passes the tests, though it only works IF YOU ARE TESTING A PANGRAM.
If the string you're testing is not a pangram, it will return more results than necessary.
Let's say your string is 'abc'. It will return a false for each letter in the alphabet that is not in 'abc', and then at the end, it will return a True anyway.
Anyone please tell me if I'm wrong.
This comment is hidden because it contains spoiler information about the solution
If I copy/paste this code to the editor, it returns an error due to the division by 2.
It turns the index to a float value whilst it only works for integers.
If anyone could explain how to make this work, please.