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.
Hi I tried to slice the array if there is more than 2 numbers and is still showing errors
This comment is hidden because it contains spoiler information about the solution
I recognized one thing
console.log(twoSum([738, 523, 783, 0, 104, 261, 90, 369, 24, 547], 369));
It does only return [3], but the solutions is [3,7]. For some reason even it satisfied the condition in find method, it would return the falsy value (For what I have tested the case with 0).
What could be wrong with my algorithm? It would be helpful, if you could point out how I implemented it wrongly. Thanks!
This comment is hidden because it contains spoiler information about the solution