public static bool IsPangram(string sentence)
if (sentence.Length < 26)
foreach(char c in sentence)
public static void Main()
Console.WriteLine("UniLecs");
Console.WriteLine(IsPangram("unilecs"));
Console.WriteLine(IsPangram("thequickbrownfoxjumpsoverthelazydog"));