Score of a String
You are given a string s. The score of a string is defined as the sum of the absolute difference between the ASCII values of adjacent characters.
Return the score of s.
LeetCode Problem - 3110
class Solution {
public int scoreOfString(String s) {...
perfinsights.hashnode.dev1 min read