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.
Here is my approach:
This kata has only a few states, which can be solved by pen and paper.
This comment is hidden because it contains spoiler information about the solution
I've tested the same solution code of mine for Python 2.7.6 and Python 3.4.3 just now and both pass all final test cases. I think there is no issue if you aren't using version-specific stuff.
I am totally agreed with semiessessi. It's a shame to call this piece of **** best practice.
Python 3.4.3 is not supported, that must have been a bug with the allowed versions. 2.7 is now the only option for this challenge.
Same problem here...
"Do not use built in functions."
When will this be fixed? And still an issue after 7 months...
still an issue after 6 months...
Still an issue after 5 months...
Those two test cases do have the same code, but they have different input. Here is what the second test case looks like:
Test.assert_equals(whitespace(io123, "8\n6\n7\n"), "867")
This what I got when i submit.
Please fix this testcase for Python 3.4.3
I was stuck at input functionality test where the first two testcases have same Whitespace code and input, but expect different output:
Code:"ssstntnttssstsntnttsssttntnttsssttntttssstsntttssstnttttnsttnsttnstnnn"
Input : "1","2","3"
Expect output 1 : "123"(passed)
Expect output 2 : "867"(failed)
My output : "123"
Language : Python
Did I miss something? Or there's something wrong with the testcases?