You are viewing a single comment's thread. Return to all comments →
My C# solution, if you think this could be improve even better, just let me know!
public static string pangrams(stirng s) { string isPangram = string.Join(string.Empty, s.ToUpper().Replace(" ", "").Distinct()); return isPangram.Length == 26 ? "paragram" : "not paragram"; }
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 →
My C# solution, if you think this could be improve even better, just let me know!