import java.util.Scanner; // The quick brown fox jumps over the lazy dog public class panagram { static boolean isPanagram(String str) { String a; int c[] = new int[26]; a=str.replaceAll(" ",""); a =a.toLowerCase(); for(int i=0; i