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.
C++ test code is missing declaration of
string
The description does not specify how the items should be sorted. If it's supposed to be in alphabetical order, including symbols makes no sense. If it's by ascii value, requiring case-insensitivity makes no sense.
I think alphabetical order should be specified in the description and the symbol test case should be removed.
Actual and expected are flipped in PHP
in C++,
using namespace std;
in the proposed soution is required for the tests to run properly...BTW a code smell...
Please add tests that check if the returned value only contains unique values.
I managed to solve this kata without checking this case.
Go translation
D translation
Rust translation
Can you, please, explain the rule for discarding the names.
Why <[JAsoN, JaSON, jASon, jasON]> boils down to <[JAsoN, jASon]>
and <[JJ, Jackson, Jason, Johnson]> to <[JJ, Jason]> ?
Ruby 3.0 should be enabled, read this to learn how to do it
Please organize the structure of test fixture as following (although it has been mentioned in the attached link, I'm repeated here again)
This comment is hidden because it contains spoiler information about the solution
Rust 2018 is giving some unused variable problems on internal tests.