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 is a fantastic solution. Very well done!
Fantastic one-liner!
Writing a good indented code.
mul = lambda : sum(i for i in range(1000) if not i%3 * i%5)
Use a generator ....
Look at what the function range() does. Here you iterate from 0 up to 1000 included.
Re-read the instruction. Re-read your code, then you will find your mistake as your program logic isn't wrong.