You are viewing a single comment's thread. Return to all comments →
C#
public static string pangrams(string s) { string newString = s.ToLower(); string result = "pangram"; for(char letra = 'A'; letra <= 'Z'; letra++){ if(!newString.Contains(char.ToLower(letra))) { result = "not "+result; break; } } return result; }
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#