LeetCode/go/best-sightseeing-pair.go
2024-12-27 11:07:01 +01:00

15 lines
276 B
Go

package main
func maxScoreSightseeingPair(values []int) int {
maxLeft := values[0]
maxScore := 0
for i := 1; i < len(values); i++ {
rightScore := values[i] - i
maxScore = max(maxScore, maxLeft+rightScore)
maxLeft = max(maxLeft, values[i]+i)
}
return maxScore
}