原题链接
const kthToLast = function (head, k) { let fast = head let low = head let n = 0 while (fast) { fast = fast.next if (n >= k) { low = low.next } n++ } return low.val }