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.
Thanks
I have done it please take a look
This comment is hidden because it contains spoiler information about the solution
You'll have to post your code (marked as a spoiler) if you want better help, but if it works in your local system, there's a good chance that you're mutating the input. Tests 1-3 all use the same array in their function call (as in, the same variable), so if you're mutating it on test 1, you'll have bad answers for tests 2 and 3.
My code provides the right output on my system yet it shows test case 2 and 3 failed with expected output [9,6] and showing mine output as [14,10] idk what i am doing wrong