Write a method that accepts a String and returns the character with the second highest frequency. For example "aabbbc" would return 'a'. If the string contains spaces, they can be disregarded from the count.
Note: my implementation returns a tuple (char, count) but that is just a matter of only returning the char itself.
very precise and to the point code
ReplyDelete