[leetcode]移除链表尾端第n个结点
Given a linked list, remove the n-th node from the end of list and return its head.
给定链接列表,从列表末尾删除第n个节点并返回其头部。
Notes
You may assume the two numbers do not contain any leading zero, except the number 0 itself
您将获得两个非空链表,表示两个非负整数。 数字以相反的顺序存储,每个节点包含一个数字。 添加两个数字并将其作为链接列表返回。
您可以假设这两个数字不包含任何前导零,除了数字0本身