Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
x='We are the MaTLaBins';
y_correct = 3;
assert(isequal(VOWEL_COUNTER2(x),y_correct))
y =
3
|
2 | Pass |
x='ThiS iS tHe MaTLaB CoDiNg';
y_correct = 4;
assert(isequal(VOWEL_COUNTER2(x),y_correct))
y =
4
|
3 | Pass |
x='eDuCaTioN';
y_correct = 5;
assert(isequal(VOWEL_COUNTER2(x),y_correct))
y =
5
|
4 | Pass |
x='LaBoRaToRy';
y_correct = 2;
assert(isequal(VOWEL_COUNTER2(x),y_correct))
y =
2
|
5 | Pass |
x='Deleted';
y_correct = 1;
assert(isequal(VOWEL_COUNTER2(x),y_correct))
y =
1
|
6 | Pass |
x='Dltd';
y_correct = 0;
assert(isequal(VOWEL_COUNTER2(x),y_correct))
y =
0
|
Which values occur exactly three times?
3817 Solvers
Who knows the last digit of pi?
557 Solvers
376 Solvers
724 Solvers
Saving MATLAB session to a file
145 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!