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.
true but should be a suggestion. not an issue IMO
This comment is hidden because it contains spoiler information about the solution
Idc how old that kata is (2013), how is it ranked 7kyu?
Duplicate: https://www.codewars.com/kata/sort-arrays-1/javascript
This comment is hidden because it contains spoiler information about the solution
Fixed.
Fixed.
I have seen some of the answers simply return 'true'. There should be test cases to check whether an array is being returned.
No Example Tests. (Kudos for the random test attempt though!)
And, then, but, really .. we're being asked to wrap Array.prototype.sort() ?!?
Or was it your intention to have us reimplement it? No, judging from your own solution, that's not it. Please come up with something better.
Or
Test.assertDeepEquals
. Cleaner output thanTest.assertSimilar
.Incorrect usage of
Test.expect()
leads to any function returning a truthy value passing all of the tests. Nice attempt on random tests though, keep up the good work :DYou should add some random tests to prevent hardcoded solutions(cheats). If you don't know how to do it ask for help :)
Also you should use
Test.assertSimilar()
to compare arrays.