Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
x='coUnt the vowEl';
y_correct = 5;
assert(isequal(vowel_counter(x),y_correct))
w =
'o'
w =
'oU'
w =
'oUe'
w =
'oUeo'
w =
'oUeoE'
y =
5
|
2 | Pass |
x='coUnt the vowEl counter';
y_correct = 8;
assert(isequal(vowel_counter(x),y_correct))
w =
'o'
w =
'oU'
w =
'oUe'
w =
'oUeo'
w =
'oUeoE'
w =
'oUeoEo'
w =
'oUeoEou'
w =
'oUeoEoue'
y =
8
|
3 | Pass |
x='The fox was the jackle';
y_correct = 6;
assert(isequal(vowel_counter(x),y_correct))
w =
'e'
w =
'eo'
w =
'eoa'
w =
'eoae'
w =
'eoaea'
w =
'eoaeae'
y =
6
|
4 | Pass |
x='Education';
y_correct = 5;
assert(isequal(vowel_counter(x),y_correct))
w =
'E'
w =
'Eu'
w =
'Eua'
w =
'Euai'
w =
'Euaio'
y =
5
|
5 | Pass |
x='We are the MaTLaBiAns';
y_correct = 8;
assert(isequal(vowel_counter(x),y_correct))
w =
'e'
w =
'ea'
w =
'eae'
w =
'eaee'
w =
'eaeea'
w =
'eaeeaa'
w =
'eaeeaai'
w =
'eaeeaaiA'
y =
8
|
Make an awesome ramp for a tiny motorcycle stuntman
334 Solvers
277 Solvers
531 Solvers
Basics: Divide integers to get integer outputs in all cases
111 Solvers
Who has power to do everything in this world?
318 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!