Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
%%
x='coUnt the vowEl';
y_correct = 5;
assert(isequal(vowel_counter(x),y_correct))
|
2 | Pass |
%%
x='coUnt the vowEl counter';
y_correct = 8;
assert(isequal(vowel_counter(x),y_correct))
|
3 | Pass |
%%
x='The fox was the jackle';
y_correct = 6;
assert(isequal(vowel_counter(x),y_correct))
|
4 | Pass |
%%
x='Education';
y_correct = 5;
assert(isequal(vowel_counter(x),y_correct))
|
5 | Pass |
%%
x='We are the MaTLaBiAns';
y_correct = 8;
assert(isequal(vowel_counter(x),y_correct))
|
Make the vector [1 2 3 4 5 6 7 8 9 10]
35552 Solvers
17467 Solvers
273 Solvers
Determine the length of a string of characters
171 Solvers
286 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!