Round 1: Given a pointer to a node in the linked list and nothing else (not even head pointer) delete that node.
Sigiloso
This is simple question just look up to next node in the linked list using current node's next pointer, copy data and next pointer of that node to current node data and its next pointer and delete that next node.