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.
Yes, runtime on this solution will be n^2 since they are entering every number 1 by 1 and it's an N * N table which means N^2 items will need to be entered.
apparently "best practice" is just, "shortest code"
You know it doesn't kill to have a few more lines? Bad practice.
.
you're wrong, they're taking every letter in the alphabet it test it against s, if the letter is not in s, which mean it's not a pangram, which mean it would return False and the code ends there. However, if we iterate through the whole alphabet with every letter in s, the loops finish and it return True.
This comment is hidden because it contains spoiler information about the solution
This comment is hidden because it contains spoiler information about the solution