**Problem Statement:**
Given the required input arguments, write an efficient algorithm to solve the **Remove Nth Node From End** problem. Implement the required logic as specified by standard definitions for this classic algorithmic challenge.
**Hint / Expected Approach:**
Two-pointer with n-gap lead
**Edge Cases to Consider:**
- (1) Remove head (n = list length)
- (2) Single node
- (3) Two nodes, remove first or second