A pangram is a sentence where every letter of the English alphabet appears at least once.
Given a string sentence, return 'true' if it is a pangram, 'false' otherwise.
The check is case-insensitive.
Input: A single string sentence.
Output: Return 'true' if all 26 letters appear, otherwise 'false'.
Input: thequickbrownfoxjumpsoverthelazydog
Output: true
Explanation: Contains all 26 English letters.Input: leetcode
Output: false
Explanation: Many letters are missing.Input: abcdefghijklmnopqrstuvwxyz
Output: true
Explanation: Exactly all 26 letters present.1 <= sentence.length <= 1000sentence consists of lowercase English letters