Question: In a singly linked list, how do you delete a node given only access to that node?
Options:
Correct Answer: Copy the next node\'s data
Solution:
To delete a node in a singly linked list when you only have access to that node, you can copy the data from the next node and then delete the next node.