i think my solution is correct but the system seems to get it wrong
Test | Status | Code Input and Output |
---|---|---|
1 | Fail |
%%
x = 'The quick brown fox jumps over a lazy dog';
y_correct = true;
assert(isequal(isPangram(x),y_correct))
Error: Assertion failed.
|
2 | Fail |
%%
x = 'The quick brown fox jumped over a lazy dog';
y_correct = false;
assert(isequal(isPangram(x),y_correct))
Error: Assertion failed.
|
3 | Fail |
%%
x = 'Pack my box with five dozen liquor jugs';
y_correct = true;
assert(isequal(isPangram(x),y_correct))
Error: Assertion failed.
|
4 | Fail |
%%
x = 'Pack my box with four dozen liquor jugs';
y_correct = false;
assert(isequal(isPangram(x),y_correct))
Error: Assertion failed.
|
5 | Fail |
%%
x = 'Sphinx of black quartz, judge my vow';
y_correct = true;
assert(isequal(isPangram(x),y_correct))
Error: Assertion failed.
|
6 | Fail |
%%
x = 'Sphinx of black onyx, judge my vow';
y_correct = false;
assert(isequal(isPangram(x),y_correct))
Error: Assertion failed.
|
7 | Fail |
%%
x = 'Wonderful watermelon, bringer of life.';
y_correct = false;
assert(isequal(isPangram(x),y_correct))
Error: Assertion failed.
|
8 | Fail |
%%
x = 'Dastardly dumpling, harbinger of doom!';
y_correct = false;
assert(isequal(isPangram(x),y_correct))
Error: Assertion failed.
|
9 | Fail |
%%
x = 'AbcDE FgHiJKl mmoPQrstuV Wxyz';
y_correct = false;
assert(isequal(isPangram(x),y_correct))
Error: Assertion failed.
|
10 | Fail |
%%
x = 'With quiz game Cody for MATLAB, expect perverse junk.';
y_correct = true;
assert(isequal(isPangram(x),y_correct))
Error: Assertion failed.
|
11 | Fail |
%%
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))
Error: Assertion failed.
|
1262 Solvers
Project Euler: Problem 8, Find largest product in a large string of numbers
315 Solvers
317 Solvers
Generate a vector like 1,2,2,3,3,3,4,4,4,4
3624 Solvers
5011 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!