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
I've just realized how trivial my question was.
Thanks for clarification!
If I type in my function something like:
return arr.join(',') it returns ''1,1,3,3,7,2,2,2'' instead of '20, 37, 21'
If I try:
return arr.split(',') it returns '['20', '37', '21']'
Is this some kind of local IDE issue? I've checked the documentation for join(',') and split(',') and it didn't suggest that the output would look like this.
I've used these methods several times, and they worked like they are suppoused to, now they don't. I will appreciate any advice.