code/string_algorithms/src/pangram_checker/README.md
A pangram is a sentence in which every letter of a given alphabet appears at least once. The most famous pangram in the english language is "The quick brown fox jumps over a lazy dog".
We only try to implement pangram checker algorithms for sentences in english language.
The Time complexity for the above algorithm will be O(n), where n is the length of input string.