go: add «1014. Best Sightseeing Pair»
URL: https://leetcode.com/problems/best-sightseeing-pair/ Signed-off-by: Matej Focko <me@mfocko.xyz>
This commit is contained in:
parent
b67d43c82e
commit
945eef30d1
1 changed files with 15 additions and 0 deletions
15
go/best-sightseeing-pair.go
Normal file
15
go/best-sightseeing-pair.go
Normal file
|
@ -0,0 +1,15 @@
|
|||
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
|
||||
}
|
Loading…
Reference in a new issue