Write a method that computes the frequency (as a percentage between 0.0 and 1.0) of each letter A-Z or a-z in a string. Don't distinguish between upper- and lowercase letters. Return an array of length 26. The i
'a' + i
or 'A' + i
among the letters in the string. The string may contain other characters that you should simply skip.