Write a method that computes how often each letter A-Z or a-z occurs in a string. Don't distinguish between upper- and lowercase letters. Return an array of length 26. The i
'a' + i
or 'A' + i
occurs in the string. The string may contain other characters that you should simply skip.