Quiz: Finding Nth From End

Test your understanding

Check Your Understanding

To find the nth node from the end in one pass, what technique should you use?

  1. A.Reverse the list first
  2. B.Use recursion to count backwards
  3. C.Store all nodes in an array
  4. D.Use two pointers with an n-node gap between them
Start the roadmap to answer the quizzes and solve the challenges