Challenge: Maximum Pairwise Product

Maximum Pairwise Product Problem.

We'll cover the following...

Problem


Maximum Pairwise Product Problem

Find the maximum product of two distinct numbers in a sequence of non-negative integers.

Input: A sequence of nn non-negative integers.

Output: The maximum value that can be obtained by multiplying two different elements from the sequence.

Given a sequence of non-negative integers a1,...,ana_{1},...,a_{n}, compute

max1ijnaiaj.max_{1 \leqslant i \neq j \leqslant n} a_{i} \cdot a_{j}. ...