Say you got an input array and output array of equal length. The input array has random integers and you need to populate the output array by following this criteria.
The element at index i of the output array will the product of all the elements in the input array, excluding the element at position i.
ie output[k] = Product of i's { i=0..n-1, where i≠k }
Write a code / algo that will work the FASTEST.