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 broken these down now, hope that is as you suggested.
Thanks for the feedback, I have done this.
Yes, please add falsey values to the description. I will add a zero the the test case now.
Thank you, I have made this change to the solution. I am new to coding so all help is gratefully received.
Sorry, I do not understand what you mean. Which solutions are the problem.
I have approved the ruby and python translations. Thank you for making these! Yes, please add random test cases to the JS version.
Submitted by accident. Please see other solution.
• Doesn't appear to test for integers, rather it tests for numbers of every kind. ZozoFouchtra's answer is one of the few that would pass.
As I understand the kata it does test for integers. See (a1[i] % 1 === 0) in thegsi’s solution. The second test case includes a decimal number and an integer. Please let me know your opinion on this.
• The last test case supplies something that isn't an array. The question says they'll always be arrays.
Good point. I have changed the last test case to an array.
• To encourage good practice it would be better to return in only one datatype i.e. false could be "Liar" and true become "Honest". Javascript allows this mixing of return types unlike other languages but taking advantage of that can lead to a lot of trouble and should be done for a really good reason.
Interesting point and not one that I had given much thought to. I have now changed the Booleans to strings “Right” and “Wrong”.
Oh and if it's going to supply them with example test cases why not do one for "not possible" for the sake of completeness
I deliberately left out incomplete in the test cases to make the kata a little more difficult. I kind of prefer it that way!