Two Pointers

18. 4Sum

In this problem, we use four pointers to get no repeating tuples, two for iteration and two for shrinking the solution space.

15. 3Sum

In this problem, we use three pointers to get no repeating tuples, one for iteration and two for shrinking the solution space.