You are viewing a single comment's thread. Return to all comments →
C++ Easy Solution
string pangrams(string s) { unordered_set<char> res; for(char c : s){ if(isalpha(c)){ res.insert(tolower(c)); } } return (res.size()==26)? "pangram":"not pangram"; }
Seems like cookies are disabled on this browser, please enable them to open this website
Pangrams
You are viewing a single comment's thread. Return to all comments →
C++ Easy Solution