Given an array of numbers with positive and negative, find pairs that sum to zero
a) sort the numbers
b) start 2 pointers from from begin and end
c) if sum is > or < = then move appropriate pointer.
Above question, but now finding 3 numbers which sums to zero.
a) for each number in array as target (index:0, 1, 2, etc)
start 2 pointers from i+1 and len-1
if sum of target + 2 pointers is > 0 decrement second pointer
if sum of target + 2 pointers is < 0 increment first pointer