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.
will do, sorry about that
I believe the time complexity is still linear for both examples. The Math.max/min solution does have two loops but they are not nested. It would end up being O(2n) which would still condense down to O(n) like your solution. I think ultimately the one liner is more readable which would make it preferable. Please correct me if I'm missing something
This comment is hidden because it contains spoiler information about the solution