Test | Status | Code Input and Output |
---|---|---|
1 | Fail |
%%
x='We are the MaTLaBins';
y_correct = 3;
assert(isequal(VOWEL_COUNTER2(x),y_correct))
Error: Assertion failed.
|
2 | Pass |
%%
x='ThiS iS tHe MaTLaB CoDiNg';
y_correct = 4;
assert(isequal(VOWEL_COUNTER2(x),y_correct))
ans =
4
|
3 | Pass |
%%
x='eDuCaTioN';
y_correct = 5;
assert(isequal(VOWEL_COUNTER2(x),y_correct))
ans =
5
|
4 | Fail |
%%
x='LaBoRaToRy';
y_correct = 2;
assert(isequal(VOWEL_COUNTER2(x),y_correct))
Error: Assertion failed.
|
5 | Fail |
%%
x='Deleted';
y_correct = 1;
assert(isequal(VOWEL_COUNTER2(x),y_correct))
Error: Assertion failed.
|
6 | Fail |
%%
x='Dltd';
y_correct = 0;
assert(isequal(VOWEL_COUNTER2(x),y_correct))
Error: Assertion failed.
|
1313 Solvers
Remove the small words from a list of words.
474 Solvers
340 Solvers
125 Solvers
07 - Common functions and indexing 1
269 Solvers