1. Implement a queue using stacks 2. Search through an array of integers and find pairs that add to a target
Sigiloso
1. Google question and you'll find actual solution on StackOverflow 2. Have a front and back pointer to compare/add values. If the sum is greater than your target, increment back pointer down. If sum is too small, increment front pointer up. If you find match, output pair and increment both (up and down). When pointers cross over, end search. This only works for sorted arrays (which is what I was given)