Problem Description
A = ["the", "quick", "brown", "fox", "jumps", "over", "the", "lazy", "dog"]
Input 2:
A = ["bit", "scale"]
1
Output 2:
0
We can check that all english alphabets are present in given sentence.
Explanation 2:
Not all english alphabets are present.
NOTE: You only need to implement the given function. Do not read input, instead use the arguments to the function. Do not print the output, instead return values as specified. Still have a question? Checkout Sample Codes for more details.