The objective of this problem is to determine the number of unique vowels used in the given string.
Now count vowels in STRING.
EXAMPLE:
STRING='We are the MaTLaBins'; then OUTPUT is 3
or,
STRING='LaBoRaToRy'; then OUTPUT will be 2
Solution Stats
Problem Comments
2 Comments
Solution Comments
Show comments
Loading...
Problem Recent Solvers85
Suggested Problems
-
Find the longest sequence of 1's in a binary sequence.
6700 Solvers
-
Return elements unique to either input
809 Solvers
-
Reverse the elements of an array
1118 Solvers
-
Element by element multiplication of two vectors
398 Solvers
-
402 Solvers
More from this Author16
Problem Tags
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!
Just to clarify the problem statement: the objective of this problem seems to be to determine the number of unique vowels used in the given string.
Correct output for Laboratory is 3.