+ 3
Challenge 6: String Testing.
Write a program to input a string and check whether it has all the letters of the alphabet or not.
8 Réponses
+ 5
is this what u want
https://code.sololearn.com/WD3Un3s4y0vy/#html
+ 17
No, He said ALL letters of alphabet, not just test if they're latin chars.....
(BTW : ES6 unsupported for me... ^_^)
+ 15
Just put ignore case flag....
+ 13
With your regex the input "aafavhrs" would be true.... He wants to check if input contains all letters of the alphabet..... ("abcdefghijklmnopqrstuvwxyz.rsfgrssgjlo...." <- this should be true)
^_^
+ 11
A basic approach...
https://code.sololearn.com/WTjarb4C5Jk0/?ref=app
+ 4
isnt alphabets a-z? what is wrong lol
+ 4
OHHHH AHAHAHAHA omgg sorry thanks
i dont understand, what about uppercase?
EDIT: fixed lol it works for "the quick brown fox jumps over the lazy dog"
0
Late to the party but here's a python version. https://code.sololearn.com/c6EwzZtHxT4C/?ref=app