Determine the number of unique odd integers in a vector.
Examples:
Input x = [2 5 8 3 7 1]; Output y = 4;
Input x = [2 5 9]; Output y = 2;
Solution Stats
Problem Comments
1 Comment
Solution Comments
Show comments
Loading...
Problem Recent Solvers828
Suggested Problems
-
Project Euler: Problem 5, Smallest multiple
1653 Solvers
-
Project Euler: Problem 9, Pythagorean numbers
1386 Solvers
-
Back to basics 21 - Matrix replicating
1802 Solvers
-
Find the index of the largest value in any vector X=[4,3,4,5,9,12,0,4.....5]
399 Solvers
-
Sum of odd numbers in a matrix
619 Solvers
More from this Author7
Problem Tags
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!
The code check does not mandate that you find the number of *unique* odd integers, just the absolute number of odd integers. This is a source of confusion and inflated size!