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.
AcesOfGlory already write right explanation.
I assumed that max() isn't work's with generators.
So i thought that your solution will create list like
[ int_1, int_2, ... int_N ]
and only then program start search maximum of int_k
Then i agree your way is better, sry)
So you create whole list of 5 digit numbers instead of keeping one variable. And then use max() to search max. Don't think it's clever or best practice.