This solution is locked. To view this solution, you need to provide a solution of the same size or smaller.
Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
%%
x='coUnt the vowEl';
y_correct = 5;
assert(isequal(vowel_counter(x),y_correct))
ans =
5
|
2 | Pass |
%%
x='coUnt the vowEl counter';
y_correct = 8;
assert(isequal(vowel_counter(x),y_correct))
ans =
8
|
3 | Pass |
%%
x='The fox was the jackle';
y_correct = 6;
assert(isequal(vowel_counter(x),y_correct))
ans =
6
|
4 | Pass |
%%
x='Education';
y_correct = 5;
assert(isequal(vowel_counter(x),y_correct))
ans =
5
|
5 | Pass |
%%
x='We are the MaTLaBiAns';
y_correct = 8;
assert(isequal(vowel_counter(x),y_correct))
ans =
8
|
616 Solvers
Magic is simple (for beginners)
1117 Solvers
168 Solvers
07 - Common functions and indexing 5
255 Solvers
189 Solvers