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.
This comment is hidden because it contains spoiler information about the solution
It is in the left sidebar under "Chat": https://discord.gg/mSwJWRvkHA
I also had this issue at the beginning. Notice that the words you need to work on are the input split by either _ or -. For example for the input "A-B_C", you'd work on "A", "B", "C"
Check the left bar, Chat: https://discord.gg/mSwJWRvkHA
Your code is wrong, but I should't tell you why. Instead, use all of the sample tests in
VS code
so you can see where it fails. This is a common circumstance where coders think that when their code passes inVS code
, that's that, whereas it's often the case thatVS code
is lacking test case coverage.Are you absolutely sure your code passes this test case locally?
A problem with your code is not a kata issue. Select Node v18 and see the only sample test your code fails there.