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.
ow roger that since *args is already a list,
no need to recreate a list of int when you are already given one.
Good deal, thanks for the assist one this !
No, use
something
instead of[item for item in something]
. In your case,something
isargs
. In other words, it could bereturn sum(args)
use
something
where ?use
something
instead ofargs
in my code ?Any time you find yourself doing
[item for item in something]
, consider just usingsomething
instead.