Easy
Given a string s of lowercase and/or uppercase letters, return the length of the longest palindrome that can be built with those letters (letters are case-sensitive).
Input: s = "abccccdd" Output: 7
Input: s = "a" Output: 1
Input: s = "bb" Output: 2