Test | Status | Code Input and Output |
---|---|---|
1 | Fail |
x='coUnt the vowEl';
y_correct = 5;
assert(isequal(vowel_counter(x),y_correct))
|
2 | Fail |
x='coUnt the vowEl counter';
y_correct = 8;
assert(isequal(vowel_counter(x),y_correct))
|
3 | Fail |
x='The fox was the jackle';
y_correct = 6;
assert(isequal(vowel_counter(x),y_correct))
|
4 | Fail |
x='Education';
y_correct = 5;
assert(isequal(vowel_counter(x),y_correct))
|
5 | Fail |
x='We are the MaTLaBiAns';
y_correct = 8;
assert(isequal(vowel_counter(x),y_correct))
|
Test if two numbers have the same digits
187 Solvers
124 Solvers
276 Solvers
1097 Solvers
492 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!