Given an array of integers, find the pair of adjacent elements that has the largest product and return that product.
- For
inputArray = [3, 6, -2, -5, 7, 3]
, the output should beadjacentElementsProduct(inputArray) = 21
. 7
and3
produce the largest product.
-
[execution time limit] 5 seconds (ts)
-
[input] array.integer
inputArray
- An array of integers containing at least two elements.
- Guaranteed constraints:
$2 \le inputArray.length \le 10$ $-100 \le inputArray[i] \le 1000$
-
[output] integer
- The largest product of adjacent elements.