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 don't think it's an issue either.
This kata is a subject to deduplication process here: https://github.com/codewars/content-issues/issues/203.
Please join the discussion to help us identify duplicate kata and retire them.
There are no random tests.
Read other solutions, see how could you make it shorter. And the number of lines doesn't necessarily reflect the kata's difficulty.
7 kyu?? bro i had to write a whole 26 line switch case statement
For instance, if the deleted node
n
hasprev
still referenced, we can donode.prev.next = node
to restore the node partially and would corrupt the list.node.next.prev = node
would restore it completely.When deleting a node from a doubly-linked list, that node should get its references to prev and next set to null. If not, it is considered cloacked, and can restore itself in ways not intended.
can you be more specific ? i do not understand the issue
Re-raising the below issue: description does not mention that both parameters are optional:
So either update the description or remove the test case with no parameters (python)
It's in the description.
The problem is not when the second parameter is missing, the problem is that the first parameter is also missing. See which positional argument is missing: "phrase".
Not an issue, it says
If a second parameter is not given, assume the frame should be decorated using the * character.
in the descriptionThis comment is hidden because it contains spoiler information about the solution
Python translation
Loading more items...