Remove a node from a singly linkedlist without knowing the head node. All you have is the node itself.
Sigiloso
if node is the last one, there no way to properly remove it, otherwise just copy next value and next->next pointer from the following node and delete next node