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 also states that arguments are of an unspecifed number got to end of how ever many arguments exist but don't overflow works in functions as well
def func(*args): how many arguments 1 500 who knows :)
O(2n) = O(n)
This comment is hidden because it contains spoiler information about the solution
There are no nested loops, it's O(n). Obviously, there's no O(1) as we have an array.