Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
x='We are the MaTLaBins';
y_correct = 3;
assert(isequal(VOWEL_COUNTER2(x),y_correct))
y =
'eaeeaai'
y =
3
|
2 | Pass |
x='ThiS iS tHe MaTLaB CoDiNg';
y_correct = 4;
assert(isequal(VOWEL_COUNTER2(x),y_correct))
y =
'iieaaoi'
y =
4
|
3 | Pass |
x='eDuCaTioN';
y_correct = 5;
assert(isequal(VOWEL_COUNTER2(x),y_correct))
y =
'euaio'
y =
5
|
4 | Pass |
x='LaBoRaToRy';
y_correct = 2;
assert(isequal(VOWEL_COUNTER2(x),y_correct))
y =
'aoao'
y =
2
|
5 | Pass |
x='Deleted';
y_correct = 1;
assert(isequal(VOWEL_COUNTER2(x),y_correct))
y =
'eee'
y =
1
|
6 | Pass |
x='Dltd';
y_correct = 0;
assert(isequal(VOWEL_COUNTER2(x),y_correct))
y =
1×0 empty char array
y =
0
|
Remove all the words that end with "ain"
1292 Solvers
Least common multiple of many numbers
189 Solvers
284 Solvers
283 Solvers
Put Two 1D matrices into one 1D matrix
110 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!