Fast and slow pointer
1 min readJul 31, 2020
On Leetcode, some problems can be solved by using faster and slow pointers. I’d like to summarize some problems here.
148. Sort List
A nice video about this problem can be found in [1]
287. Find the Duplicate Number
A solution can be found HERE