Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
x='We are the MaTLaBins';
y_correct = 3;
assert(isequal(VOWEL_COUNTER2(x),y_correct))
ans =
3
|
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 | Pass |
x='LaBoRaToRy';
y_correct = 2;
assert(isequal(VOWEL_COUNTER2(x),y_correct))
ans =
2
|
5 | Pass |
x='Deleted';
y_correct = 1;
assert(isequal(VOWEL_COUNTER2(x),y_correct))
ans =
1
|
6 | Pass |
x='Dltd';
y_correct = 0;
assert(isequal(VOWEL_COUNTER2(x),y_correct))
ans =
0
|
895 Solvers
Duplicate each element of a vector.
518 Solvers
Who has power to do everything in this world?
318 Solvers
calculate linear convolution two vectors
110 Solvers
07 - Common functions and indexing 5
314 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!