using System; using System.Collections.Generic; class Solution { public ListNode FindKthToTail (ListNode head, int k) { // write code here if(head == null) return null; ListNode slow = head; ListNode fast = head; int len = 0; while(fast != null){ fast = fast.next; len++; if(len > k) slow = slow.n...