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 so ops. eg. Pack my box with five dozen liquor jugs.
- Would using a Hash be useful?
- Or using a bit map? or any other way?
BTW my code would be in Java.