3281. Maximize Score of Numbers in Ranges
You are given an array of integers
start
and an integerd
, representingn
intervals[start[i], start[i] + d]
.You are asked to choose
n
integers where theith
integer must belong to theith
interval. The score of the chosen integers is defined as the minimum absolute difference between any two integers that have been chosen.Return the maximum possible score of the chosen integers.