What would be the best logic to check all the letters in a given string.
If all the 26 letters are available in the provided string, I want to check that and perform
An array of 26 booleans is enough, each entry representing on of the alphabet letters. You can set the entry to true when the letter is found.