Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
x = [1 2;3 4];
y_correct = [2 2];
assert(isequal(even_odd(x),y_correct))
ans =
2 2
|
2 | Pass |
x = [1 1 2 3 3 4 5 5];
y_correct = [6 2];
assert(isequal(even_odd(x),y_correct))
ans =
6 2
|
3 | Pass |
x = magic(3);
y_correct = [5 4];
assert(isequal(even_odd(x),y_correct))
ans =
5 4
|
4 | Pass |
x = spiral(5);
y_correct = [13 12];
assert(isequal(even_odd(x),y_correct))
ans =
13 12
|
Remove all the words that end with "ain"
1027 Solvers
Determine the number of odd integers in a vector
321 Solvers
07 - Common functions and indexing 6
282 Solvers
Check that number is whole number
274 Solvers
735 Solvers