Skip to content

Instantly share code, notes, and snippets.

@NhanKhangg98
Created October 23, 2022 09:12
Show Gist options
  • Save NhanKhangg98/cd14dd45fe0df8104156d3677fb9a133 to your computer and use it in GitHub Desktop.
Save NhanKhangg98/cd14dd45fe0df8104156d3677fb9a133 to your computer and use it in GitHub Desktop.
function checkIfPangram(sentence: string): boolean {
let seen = new Set()
for(let i=0;i<sentence.length;i++){
seen.add(sentence[i]);
}
if(seen.size === 26){
return true;
} else {
return false;
}
};
@QuocCao-dev
Copy link

return seen.size === 26

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment