0
anyone to help me in making a code to determine wether a sentence is a pangram or not
question
2 Respostas
+ 2
Rather dirty java implementation:
https://code.sololearn.com/ck0metV0VoOr/?ref=app
0
Do you have a specific language in mind? do you have a starting code?
Really, you could just separate each character and count each letter then return true if all letters from "a" to "z" have been used.
I already have a code in C++ that counts each character somewhere (I think it's published here as well, but if not it's on github). it could be adjusted to do just that. ;)