...

/

Challenge 10: Return the Nth Node From End

Challenge 10: Return the Nth Node From End

Returning the nth node from the start of a linked list is easy. Can you return the "nth" node from the end of a list?

Problem statement

In the FindNth(int n) function, a certain n is specified as an argument. ...