https://leetcode.com/problems/best-sightseeing-pair/description/?envType=daily-question&envId=2024-12-27You are given an integer array values where values[i] represents the value of the ith sightseeing spot. Two sightseeing spots i and j have a distance j - i between them.The score of a pair (i values[i] + values[j] + i - j: the sum of the values of the sightseeing spots, minus the distance bet..