https://leetcode.com/problems/check-if-the-sentence-is-pangram/description/

class Solution {
public boolean checkIfPangram(String sentence) {
Set<Character> set = new HashSet<>();
for(char c : sentence.toCharArray()) {
set.add(c);
}
return set.size() == 26;
}
}