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.
It is the star operator
*
which is used in line 1 to pack into a list a variable number of arguments.On other lines it is used to unpack them
https://docs.python.org/3/reference/expressions.html#expression-lists
The same goes to pack keyword arguments into a dict with
**
operatorhttps://docs.python.org/3/reference/expressions.html#dictionary-displays
For a number of 2 or more digits, the last 2 digits determine whether it is divisible by 4.
([02468][048]|[13579][26])
matches all combinations of the last 2 digits that would make the number divisible by 4.Don't post solution in discourse next time (It's visible in dashboard), thanks ~~ :)