Problem Link - https://leetcode.com/problems/remove-nth-node-from-end-of-list/description/

Linked Lists become much more interesting when the problem asks us to work from the end of the list while only having access to the head.

Today's problem is a classic interview favorite because it tests:

Linked List traversal

Two Pointer technique