mirror of
https://gitlab.com/mfocko/LeetCode.git
synced 2024-11-09 15:59:06 +01:00
15 lines
205 B
Go
15 lines
205 B
Go
package main
|
|
|
|
func scoreOfString(s string) int {
|
|
abs := func(x int) int {
|
|
return max(x, -x)
|
|
}
|
|
|
|
score := 0
|
|
|
|
for i := 0; i+1 < len(s); i++ {
|
|
score += abs(int(s[i]) - int(s[i+1]))
|
|
}
|
|
|
|
return score
|
|
}
|