Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
%%
x='coUnt the vowEl';
y_correct = 5;
assert(isequal(vowel_counter(x),y_correct))
y =
5
|
2 | Pass |
%%
x='coUnt the vowEl counter';
y_correct = 8;
assert(isequal(vowel_counter(x),y_correct))
y =
8
|
3 | Pass |
%%
x='The fox was the jackle';
y_correct = 6;
assert(isequal(vowel_counter(x),y_correct))
y =
6
|
4 | Pass |
%%
x='Education';
y_correct = 5;
assert(isequal(vowel_counter(x),y_correct))
y =
5
|
5 | Pass |
%%
x='We are the MaTLaBiAns';
y_correct = 8;
assert(isequal(vowel_counter(x),y_correct))
y =
8
|
Increment a number, given its digits
562 Solvers
220 Solvers
Compute a dot product of two vectors x and y
750 Solvers
We love vectorized solutions. Problem 1 : remove the row average.
546 Solvers
Cell Counting: How Many Draws?
581 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!