You are viewing a single comment's thread. Return to all comments →
function pangrams(s) { s = Array.from(new Set(s.toLowerCase().split("").filter((x)=> x <= 'z' && x >= 'a').join(""))) console.log(s) if(s.length >= 26) return "pangram"; return "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 →