maxDistance
to 0, minVal
to the first element of the first array, and maxVal
to the last element of the first array.arr
in arrays
starting from the second array:
a. Calculate distance1
as the absolute difference between maxVal
and the first element of arr
.
b. Calculate distance2
as the absolute difference between the last element of arr
and minVal
.
c. Update maxDistance
with the maximum of maxDistance
, distance1
, and distance2
.
d. Update minVal
with the minimum of minVal
and the first element of arr
.
e. Update maxVal
with the maximum of maxVal
and the last element of arr
.maxDistance
as the result.