I want to compute the number of odd/even numbers in an array. But I want the results by two different functions.
Example:
x=1:10; assert(isequal(odd_fcn(x),5)) assert(isequal(even_fcn(x),5))
So you must solve this problem by writing 2 functions.
But you can only submit one function at the time.
Do you think it's possible?
HINT: I always test odd_fcn first. So odd_fcn must create the other function...
Solution Stats
Problem Comments
1 Comment
Solution Comments
Show comments
Loading...
Problem Recent Solvers19
Suggested Problems
-
Find all elements less than 0 or greater than 10 and replace them with NaN
15777 Solvers
-
2522 Solvers
-
Given a matrix, swap the 2nd & 3rd columns
1256 Solvers
-
292 Solvers
-
07 - Common functions and indexing 1
452 Solvers
More from this Author43
Problem Tags
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!
Tons of possibilities here is the thing I like the most about this problem.