Delete the Middle Node of a Linked List coding challenge using Hacker Rank as an IDE
Sigiloso
I used 2 pointers initially, one set to head, the other navigated 2 links ahead (since they asked me to delete the node 2 spaces from the end). I then used a loop to advance both until the end. Then used the first node as the pointer to the middle node I was supposed to delete.