# 快慢指针# 142. Linked List Cycle II (Medium)由于 fast 每次移动两步,slow 每次只移动一步,因此对 fast 的空指针情况判断了就不需要对 slow 的空指针进行判断了。