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.
This comment is hidden because it contains spoiler information about the solution
This comment is hidden because it contains spoiler information about the solution
This comment is hidden because it contains spoiler information about the solution
Good answer.
Mozzila documentation state this: Deprecated: This feature is no longer recommended.
This comment is hidden because it contains spoiler information about the solution
This comment is hidden because it contains spoiler information about the solution
lol, Thanks :).
From Wikipedia:
"Informally, especially in computer science, the Big O notation often is permitted to be somewhat abused to describe an asymptotic tight bound where using Big Theta Θ notation might be more factually appropriate in a given context."
As far as I understand this solution is O(nm).
Where n is the length of a and m is the length of b.
It is not O(n^2), unless you're assuming a and b must be the same length?
If a.length is 100 and b.length is 1, the number of comparisons is 100, not 10,000...
This comment is hidden because it contains spoiler information about the solution