Instruction
A letter bank of a word is the set of unique letters in this word. For example, the letter bank for "Mississipi" is "ismp" and the letter bank for "road" is "adro".
Exercise
Write a function called count_letter_banks(words) which, given a list of words, computes the number of different letter banks for words in the list.



