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.
I didn't realize at first that it had test scripts to validate the code. Now I know to look at the test scripts to understand the inputs. Thanks.
Yes. You shouldn't change the sample tests to fit your code, it won't work that way.
I have my solution working with an array input that looks like ['Bart','Lisa','Maggie'] as opposed to the sample test format of [ {name: 'Bart'}, {name: 'Lisa'}, {name: 'Maggie'} ]. I went in and changed the test format to what my code is expecting. If I click "attempt", will it fail on the full test? Do I need to adjust my code to accept the list with [{name: 'Bart'}] format?
Hi there,
I am pasing the test for (Format a string of names like 'Bart, Lisa & Maggie') kata one by one (changing the number of names in array) and Not all at once. Any suggestions?
Big thanks in advance!