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.
It would be good to have in the description the boundaries for the input. For instance, knowing whether the maximum number of bytes ever exceeds
255
would change my approach to the problem.Also, I personally believe that "Mention, don't care about" isn't very clear. I'm not sure whether those cases are present in the input and I have to disconsider them or if they aren't present at all.
I don't think Cubical.HITs.HitInt exists in the cubical library anymore. It seems to have been replaced with QuoInt. This makes it hard to complete this kata. Anyway this can be updated?
Please! don't use m and n that are not even defined in this kata (you have to go to the 3 kyu versions to understand what they mean). Use launches and eggs, instead.
Even better: copy the whole description of the kata!
Haskell noob here -- I wrote up something that seems to typecheck and pass the sample tests, but it times out on submission with logs "Generating tests...". Is this necessarily an issue with my solution module? Otherwise, how should I interpret this -- should I be looking for a simpler proof?
"neither" => "either"
The description should clarify its comment on leading zeroes; should they be preserved in the transformation?
Hello,
I try to solve this with Kotlin.
But I got the feeling that the error message seems to bo wrong in the test cases.
Here is an example:
Input: 'run{->a}' expected:<[]> but was:<[Hugh?]>
When I got the description correct the input is invalid so the answer should be Hugh? but the test case expects the empty string as answer.
Is the test broken ? (Are some test broken ?)
regards
Kai
Typo in description: "
reserse
" should be "reverse
".It seems broken on Agda.
If it's not, wider sample tests needed, because error messages are unhelpful and doesn't give any idea on which samples it's failing.
Java translation
CoffeeScript translation
I had this test case:
A < out >
-> is this correct? According to the specification, I would doubt it. It seems to be a keyword, one that requirestype
behind itFor both Kotlin and Java, since
userType
can be just aname
, having justfunctionType
anduserType
should suffice in the definition oftype
In java section:
params
should betypeParams
Scala translation
It seems to me, or simple tests are contradictory.
Passing a 2 by 2 test is possible with an index (0,0) for the lower right corner and with an index (1,1) for the upper left corner.
Passing a 3 by 3 test is possible with an index (0,0) for the lower left corner and with an index (0,2) for the upper left corner.
Passing a 5 by 5 test is possible with an index (4,4) for the lower right corner and with an index (0,0) for the upper left corner.
Am i wrong somewhere?
Loading more items...