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 is fine???
Retired.
This kata is a subject to deduplication process here: https://github.com/codewars/content-issues/issues/126.
Please join the discussion to help us identify duplicate kata and retire them.
The Clojure version is almost certainly broken.
I just can 't see how the expected output in the random tests make sense.
Given inputs
("zPEJS" "BFPxI" "," "," "," "," "vFhKk" "," "," "," "," "," "RHFQh" ".")
It expects the result to be:
"zPEJS BFPxI, ,, , vFhKk, ,, ,, RHFQh."
This section makes no sense
BFPxI, ,, , vFhKk
Another example:
Input
("NkVcr" "," "," "DlWOv" "beeOm" "," "WYCCh" "," "," "kfaEC" "IeGwS" "xellI" "." ".")
Expected:
"NkVcr, , DlWOv beeOm, WYCCh, , kfaEC IeGwS xellI."
Why the spaces between the commas?
Another example:
Input
("fdNXT" "," "iiUuU" "," "," "," "," "," "," "xDLAz" "," "," "eywFI" "." ".")
Expects this bizarness:
"fdNXT, iiUuU, ,, ,, , xDLAz, , eywFI."
What is going there? A Space after the comma, then 2 commas without a space, then a space, then 2 more without a space, then a space?
It looks like any number of commas, has to be broken up into blocks of 2, and be surrounded by spaces. This is wrong.
This is clearly broken.
If it wants every pair of commas to treat the 2nd comma like a word, this makes no sense. A comma isn't a word.
But this one breaks the above:
Here the input is:
("Gjnjv" "lXgCV" "," "," "," "," "," "," "," "RtzYV" "ewWZE" "." ".")
ANd it expects:
IT seems different to the example above. Is it something to do with odd / even combinations of commas?
.
.
Why not write inputs in tests?
just re-wrote my Clojure code in Python (pretty much verbatum) and it passed all the tests. In both implementations word,,,,word --> word,,,,SPACE word.
.. to me this is a correct and resonable interpretation of th rules.
Yes, I am facing the same confusion. I am certain I can make my program behave in the way the tests are demanding. What I really cannot understand is what interpreation of the rules would lead to the input output behaviour you documented, ie:
word,,,,word --> word, ,, , word
does not seem to follow from the rules. ( I am also working in Clojure )
No test cases composed of multiple sentences
Can someone explain why this:
["SWmBK" "," "," "," "," "aXeok" "," "EoULa" "," "," "dWnzl" "jckXr" "," "rTDdP"" yReZA" "." "." "."]
Should result in
"SWmBK, ,, , aXeok, EoULa, , dWnzl jckXr, rTDdP yReZA."
Why the space afte rthe first comma, but no space between
,,
but then a space after 3rd comma and then space after 4.This is in clojure
No random tests in JavaScript (at least).
Great kata! Thoroughly enjoyed, first in a while that's made me write way more code than I needed to, so will learn a good deal from this one.
Added random tests for python
This comment is hidden because it contains spoiler information about the solution
Loading more items...