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.
Ah, another shorter version of mine. Very good.
what is (*) use?
super, short and clear
This comment is hidden because it contains spoiler information about the solution
This comment is hidden because it contains spoiler information about the solution
O(n^2)
only happens when you have nested loops. Since the two loops are not nested at all (they're sequential), it'sO(n)
;-)This comment is hidden because it contains spoiler information about the solution
I think it doesn't make it
n^2
. It is still linear -2n
, if you want. But constants are usually discarded in Big O, so justn
.n^2
would be if, for example, for every element of that array there were another array which would be iterated.No, it's
O(n)
.Is it O(n^2) solution?
What input? There are 3 arguments.
The first and second argument will be numbers. Third argument will be a sign. Obviously the solution can be extended but that's not what is asked.
What if the input is a boolean?