Given an array of integers, find the maximal absolute difference between any two of its adjacent elements. Example For inputArray = [2, 4, 1, 0], the output should bearrayMaximalAdjacentDifference(inputArray) = 3. code >> int arrayMaximalAdjacentDifference(std::vector inputArray) {int max = -987654321;for (int i = 0; i