Last Updated : 14 Mar, 2023
Given a string check if it is Pangram or not. A pangram is a sentence containing every letter in the English Alphabet. Lowercase and Uppercase are considered the same. Examples:
Input : str = 'The quick brown fox jumps over the lazy dog' Output : Yes // Contains all the characters from ‘a’ to ‘z’ Input : str='The quick brown fox jumps over the dog' Output : No // Doesn’t contains all the characters from ‘a’ // to ‘z’, as ‘l’, ‘z’, ‘y’ are missing
This problem has existing solution please refer Pangram Checking link. We will solve this in Python using Set() data structure and List() comprehension. Approach is very simple,
Implementation:
Python3
# function to check pangram
def pangram(input):
# convert input string into lower case
input = input.lower()
# convert input string into Set() so that we will
# list of all unique characters present in sentence
input = set(input)
# separate out all alphabets
# ord(ch) returns ascii value of character
alpha = [ ch for ch in input if ord(ch) in range(ord('a'), ord('z')+1)]
if len(alpha) == 26:
return 'true'
else:
return 'false'
# Driver program
if __name__ == "__main__":
input = 'The quick brown fox jumps over the lazy dog'
print (pangram(input))
Java
import java.util.*;
public class PangramChecker {
public static void main(String[] args) {
// Define the input string
String input = "The quick brown fox jumps over the lazy dog";
// Call the pangram function and print the result
System.out.println(pangram(input));
}
public static String pangram(String input) {
// Convert the input string to lowercase
input = input.toLowerCase();
// Create a set to store unique characters in the input string
Set<Character> inputSet = new HashSet<>();
// Loop through each character in the input string
for (int i = 0; i < input.length(); i++) {
char ch = input.charAt(i);
// Check if the character is an alphabet
if (ch >= 'a' && ch <= 'z') {
// Add the character to the input set
inputSet.add(ch);
}
}
// Convert the input set to a list and sort it
List<Character> alpha = new ArrayList<>(inputSet);
Collections.sort(alpha);
// Create a StringBuilder to concatenate the sorted characters into a string
StringBuilder sb = new StringBuilder();
for (char ch : alpha) {
sb.append(ch);
}
String uniqueChars = sb.toString();
// Check if the length of the resulting string is 26 (i.e., contains all alphabets)
if (uniqueChars.length() == 26) {
return "true";
} else {
return "false";
}
}
}
Time complexity:
Auxiliary space:
RetroSearch is an open source project built by @garambo | Open a GitHub Issue
Search and Browse the WWW like it's 1997 | Search results from DuckDuckGo
HTML:
3.2
| Encoding:
UTF-8
| Version:
0.7.4