Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
%%
x = [2 5 8 3 7 1];
y_correct = 4;
assert(isequal(NumOdd(x),y_correct))
ans =
4
|
2 | Pass |
%%
x = [2 5 0 3 7 0];
y_correct = 3;
assert(isequal(NumOdd(x),y_correct))
ans =
3
|
3 | Pass |
%%
x = [2 5 -10 3 -7 0];
y_correct = 3;
assert(isequal(NumOdd(x),y_correct))
ans =
3
|
4 | Pass |
%%
x = [2 4 -6 8 -4 0];
y_correct = 0;
assert(isequal(NumOdd(x),y_correct))
ans =
0
|
5 | Pass |
%%
x = [2 5 -10 3 2 0];
y_correct = 2;
assert(isequal(NumOdd(x),y_correct))
ans =
2
|
6 | Pass |
%%
x = [];
y_correct = 0;
assert(isequal(NumOdd(x),y_correct))
ans =
0
|
7 | Pass |
%%
x = [1.5];
y_correct = 0;
assert(isequal(NumOdd(x),y_correct))
ans =
0
|
8 | Pass |
%%
x = [-11.9 3.7 5.01];
y_correct = 0;
assert(isequal(NumOdd(x),y_correct))
ans =
0
|
819 Solvers
267 Solvers
Longest run of consecutive numbers
1659 Solvers
Generate a random matrix A of (1,-1)
211 Solvers
Create an index-powered vector
352 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!