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
How does the first check even pass?... you are accessing ints[-1]... apparently JavaScript does not have a problem with that :)
I am not a professional coder, just learning in my spare time so sorry if this is nonsense but all i can think of is that if you have ints.length === 5 million, such as [1,1,1,1,1,1,1,1,1,1,1,1,1,...(5 million 1s...16], and s === 17, then to get to 16 it is going a digit by digit (5 million times) until it reaches 16 to report a match and so it times out?? I am half answering half asking really.
javascript
@AlejandorLazaro if you imply using a hash that's not O(n) algorithm; it's O(n.log(n))
what language?
Does this have a JavaScript solution which takes less than 6 seconds?
This comment is hidden because it contains spoiler information about the solution
Is this more clear?