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 should have checked that first :P
Well, at least I can confirm that's the input in js too for 7th test.
@chrono: except that there is no var to print ;) ("pure" regex problem... with bad test setup, not displaying the string tested... :/ )
Use
console.log("*" + someVar + "*")
to print the input value, the asterisks are there so you can see leading and trailing spaces.Note that the log message comes before the test result.
P.D.: that doesn't help in this case.
assuming it's the same 7th tests than in the python version:
'fjd3IR9.;'
This comment is hidden because it contains spoiler information about the solution
Your code didn't fail at
abc
, it fails atfjd3IR9.;
.If you want others to review your code you can post your code formatted and marked as spoilers.
"I can't pass the tests" is not an issue, but a
question
;-)