Check Panagram Problem

Check Panagram Problem — ExecCode School DSA Practice

Solve the Check Panagram problem on ExecCode. Free online school DSA practice in Strings - Basics. Write and run code in Java, C++, Python — no signup required to run.

Problem description

You are given a sentence. Your task is to figure out if this sentence contains at least one of every letter from 'a' through 'z' in the alphabet. It doesn't matter if the letters are big or small. If it does, print "Yes". If it doesn't, print "No".

Examples

Input The quick brown fox jumps over the lazy dog; Output Yes. Input The quick brown fox jumps over the lazy dog; Output Yes

Constraints

1 <= len(S) <= 10^4

Practice Check Panagram free on ExecCode. Browse DSA problems, topic map, and placement guides.