We use cookies to ensure you have the best browsing experience on our website. Please read our cookie policy for more information about how we use cookies.
- Prepare
- Algorithms
- Strings
- Pangrams
- Discussions
Pangrams
Pangrams
Sort by
recency
|
1932 Discussions
|
Please Login in order to post a comment
def pangrams(s):
Here is my c++ solution, you can watch the explanation here : https://youtu.be/-8w6U6qPNrA
Here is my Python solution using a Counter!
python3 1 line solution:
s=input().lower() import string for i in string.ascii_lowercase: if i not in s: print('not pangram') break else: print('pangram')