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.
I think that comment is blocked from me. Sorry I am still getting familiar with how this site works.
I am also having this problem with javascript. I put an empty object at the
leaderboard#position[0]
position and I pass every test except the 500 length. Mine is 501. I am going to try to remove a random user and hope to cheat by the tests. However, I am wondering if there is something I am missing or not aware of that will allow me to conform to the desired results. Other than that, cool kata - I had no clue that libraries likecheerio
could be brought in.No, it's only for higher level katas and those that have
PERFORMANCE
orOPTIMIZATION
tags. In general, it's a good thing solving a problem in the less time possible.Do you happen to know if this is a rule that applies to all codewars challenges?
You have 3 nested loops there (for, includes and indexOf). It won't work with big arrays, that's the reason for the timeout.
If
includes
is nested insideevery
that's O(n^2) and it's not fast enough with big arrays. Try using not nested loops.This comment is hidden because it contains spoiler information about the solution