A taxicab number is an integer that can be expressed as the sum of two cubes of integers in two different ways: a^3+b^3 = c^3+d^3. Design an algorithm to find all t
a^3+b^3 = c^3+d^3
This will use O(N^(1/3)) extra space and ~ O(N^(4/3)) time.