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 a lot
This comment is hidden because it contains spoiler information about the solution
Could you please answer? In a 44 block, i have 12 spaces, and 3 newlines. In 55, 20 spaces, 4 newlines, Isn't that correct?
This is the output i get:
var res = string.split(" ");
document.write(res);
□,■,□,■ ■,□,■,□ □,■,□,■ ■,□,■,□
var res = string.split("\n");
document.write(res);
□ ■ □ ■,■ □ ■ □,□ ■ □ ■,■ □ ■ □
Isn't this what you ask for?
Hello,
It appears that i have the same issue. I'm writing with JS, and the output is the exact same of what's requested, but says not a match. The space, and new lines are in place.
Could you please see what's going on, or if you want, see my code?
Thanks
JavaScript
Hello there,
I've done the exercise, and it says 130 tests passed, but it took more than 6 seconds. I'd like to know what's the limit here and how far off am i?