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 =
The quick brown fox jumps over a lazy dog
s =
The quick brown fox jumps over a lazy dog
tf =
1
|
2 | Pass |
x = 'The quick brown fox jumped over a lazy dog';
y_correct = false;
assert(isequal(isPangram(x),y_correct))
s =
The quick brown fox jumped over a lazy dog
s =
The quick brown fox jumped over a lazy dog
tf =
0
|
3 | Pass |
x = 'Pack my box with five dozen liquor jugs';
y_correct = true;
assert(isequal(isPangram(x),y_correct))
s =
Pack my box with five dozen liquor jugs
s =
Pack my box with five dozen liquor jugs
tf =
1
|
4 | Pass |
x = 'Pack my box with four dozen liquor jugs';
y_correct = false;
assert(isequal(isPangram(x),y_correct))
s =
Pack my box with four dozen liquor jugs
s =
Pack my box with four dozen liquor jugs
tf =
0
|
5 | Pass |
x = 'Sphinx of black quartz, judge my vow';
y_correct = true;
assert(isequal(isPangram(x),y_correct))
s =
Sphinx of black quartz judge my vow
s =
Sphinx of black quartz judge my vow
tf =
1
|
6 | Pass |
x = 'Sphinx of black onyx, judge my vow';
y_correct = false;
assert(isequal(isPangram(x),y_correct))
s =
Sphinx of black onyx judge my vow
s =
Sphinx of black onyx judge my vow
tf =
0
|
7 | Pass |
x = 'Wonderful watermelon, bringer of life.';
y_correct = false;
assert(isequal(isPangram(x),y_correct))
s =
Wonderful watermelon bringer of life.
s =
Wonderful watermelon bringer of life
tf =
0
|
8 | Pass |
x = 'Dastardly dumpling, harbinger of doom!';
y_correct = false;
assert(isequal(isPangram(x),y_correct))
s =
Dastardly dumpling harbinger of doom!
s =
Dastardly dumpling harbinger of doom!
tf =
0
|
9 | Pass |
x = 'AbcDE FgHiJKl mmoPQrstuV Wxyz';
y_correct = false;
assert(isequal(isPangram(x),y_correct))
s =
AbcDE FgHiJKl mmoPQrstuV Wxyz
s =
AbcDE FgHiJKl mmoPQrstuV Wxyz
tf =
0
|
10 | Pass |
x = 'With quiz game Cody for MATLAB, expect perverse junk.';
y_correct = true;
assert(isequal(isPangram(x),y_correct))
s =
With quiz game Cody for MATLAB expect perverse junk.
s =
With quiz game Cody for MATLAB expect perverse junk
tf =
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 =
Punctuation marks like @#$%^</&>*?!! when used in cartoons to stand in for swearing are called "grawlix".
s =
Punctuation marks like @#$%^</&>*?!! when used in cartoons to stand in for swearing are called "grawlix"
tf =
0
|
159 Solvers
Flip the main diagonal of a matrix
426 Solvers
Duplicate each element of a vector.
455 Solvers
Permute diagonal and antidiagonal
180 Solvers
299 Solvers