β Maximum value of difference of a pair of elements and their Index(Contest)
Maximum value of difference of a pair of elements and their Index MediumAccuracy: 40.21%
Input:
N = 4
arr[] = {1, 2, 3, 1}
Output:
4
Explanation:
Choosing i=0 and j=2, will result in
|1-3|+|0-2| = 4, which is the maximum
possible value.Input:
N = 3
A[] = {1, 1, 1}
Output:
2
Explanation:
Choosing i=0 and j=2, will result in
|1-1|+|0-2| = 2, which is the maximum
possible value.PreviousLongest subarray not having more than K distinct elements(Contest)NextMinimum adjacent difference in a circular array easy(Contest)
Last updated