3357. Minimize the Maximum Adjacent Element Difference
You are given an array of integers
nums
. Some values innums
are missing and are denoted by -1.You can choose a pair of positive integers
(x, y)
exactly once and replace each missing element with eitherx
ory
.You need to minimize the maximum absolute difference between adjacent elements of
nums
after replacements.Return the minimum possible difference.
c++
1 | class Solution { |