// Longest Palindrome from Characters — EASY
// Category: string
Given a string `s` which consists of lowercase or uppercase letters, return the length of the longest palindrome that can be built with those letters.
Letters are case sensitive, for example, `"Aa"` is not considered a palindrome.
Example: s = "abccccdd"
Output: 7