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.
except TypeError, lol :D
not a kata issue
Your
divide
function mutates the input.This comment is hidden because it contains spoiler information about the solution
Post your code using markdown formatting and marking your post as having spoiler content. I can't reproduce what you say you see.
Here is print: numbers [355], attempts 1.
Error:
[355] should equal [0, 355]
fixed
There's wrong in the coding for c, tester is invalid for C99
Probably because you mutate the input array/list.
No, you're probably mutating the input list, you can see that if you only print and return
numbers
, for [X] it expects [X] in random tests too.Fixed tests from [X] we get return [X], but in Random tests [X] should equal [0,X]?
Python.
Similar story. Python. For random tests fails with [X] should equal [X, X]. Can't get it.
Hello. Why in Fixed tests from [15] we get return [15], but in Random tests [153] should equal [0, 153]?