Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
%%
x = 'The quick brown fox jumps over a lazy dog';
y_correct = true;
assert(isequal(isPangram(x),y_correct))
s =
Thequickbrownfoxjumpsoveralazydog
ans =
1
|
2 | Pass |
%%
x = 'The quick brown fox jumped over a lazy dog';
y_correct = false;
assert(isequal(isPangram(x),y_correct))
s =
Thequickbrownfoxjumpedoveralazydog
ans =
0
|
3 | Pass |
%%
x = 'Pack my box with five dozen liquor jugs';
y_correct = true;
assert(isequal(isPangram(x),y_correct))
s =
Packmyboxwithfivedozenliquorjugs
ans =
1
|
4 | Pass |
%%
x = 'Pack my box with four dozen liquor jugs';
y_correct = false;
assert(isequal(isPangram(x),y_correct))
s =
Packmyboxwithfourdozenliquorjugs
ans =
0
|
5 | Pass |
%%
x = 'Sphinx of black quartz, judge my vow';
y_correct = true;
assert(isequal(isPangram(x),y_correct))
s =
Sphinxofblackquartzjudgemyvow
ans =
1
|
6 | Pass |
%%
x = 'Sphinx of black onyx, judge my vow';
y_correct = false;
assert(isequal(isPangram(x),y_correct))
s =
Sphinxofblackonyxjudgemyvow
ans =
0
|
7 | Pass |
%%
x = 'Wonderful watermelon, bringer of life.';
y_correct = false;
assert(isequal(isPangram(x),y_correct))
s =
Wonderfulwatermelonbringeroflife
ans =
0
|
8 | Pass |
%%
x = 'Dastardly dumpling, harbinger of doom!';
y_correct = false;
assert(isequal(isPangram(x),y_correct))
s =
Dastardlydumplingharbingerofdoom
ans =
0
|
9 | Pass |
%%
x = 'AbcDE FgHiJKl mmoPQrstuV Wxyz';
y_correct = false;
assert(isequal(isPangram(x),y_correct))
s =
AbcDEFgHiJKlmmoPQrstuVWxyz
ans =
0
|
10 | Pass |
%%
x = 'With quiz game Cody for MATLAB, expect perverse junk.';
y_correct = true;
assert(isequal(isPangram(x),y_correct))
s =
WithquizgameCodyforMATLABexpectperversejunk
ans =
1
|
11 | Pass |
%%
x = 'Punctuation marks like @#$%^</&>*?!!, when used in cartoons to stand in for swearing, are called "grawlix".';
y_correct = false;
assert(isequal(isPangram(x),y_correct))
s =
Punctuationmarkslikewhenusedincartoonstostandinforswearingarecalled"grawlix"
ans =
0
|
Find the longest sequence of 1's in a binary sequence.
3370 Solvers
1421 Solvers
594 Solvers
Create an index-powered vector
353 Solvers
262 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!