JewinH
Results
2
comments of
JewinH
if (fast != null) slow = slow.next; 这里要判断slow.next != null ,如果输入只有一个元素,可能会出现slow.next = null 的情况,导致slow.val 出错。